Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
mlxd committed May 19, 2021
1 parent dad80a9 commit 7635ed3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### New features since last release

* Exceptions now favoured in-place of `std::terminate`, with `JetException` as base type. Replaces `std::invalid_argument` base type of `TensorNetworkIO`. [(#3)](https://github.com/XanaduAI/jet/pull/3)

* Python bindings are now available for the `Tensor` class. [(#2)](https://github.com/XanaduAI/jet/pull/2)

* Running CMake with `-DBUILD_PYTHON=ON` now generates Python bindings within a `jet` package. [(#1)](https://github.com/XanaduAI/jet/pull/1)
Expand Down
1 change: 0 additions & 1 deletion test/Test_Tensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,6 @@ TEST_CASE("Transpose", "[Tensor]")
CHECK(tensor_t == Transpose(tensor, std::vector<std::string>{"y", "x"}));
CHECK(tensor_t == Transpose(tensor, std::vector<std::size_t>{1, 0}));


CHECK_THROWS_WITH(
Transpose(Tensor<c_fp32>(), std::vector<std::string>{"y", "x"}),
Contains("Number of indices cannot be zero."));
Expand Down

0 comments on commit 7635ed3

Please sign in to comment.