Skip to content

Commit

Permalink
Update Jet version to 0.2.1 (#62)
Browse files Browse the repository at this point in the history
* Update Jet version to 0.2.1

* Update changelog
  • Loading branch information
Mandrenkov committed Aug 9, 2021
1 parent b899275 commit 61eb3cf
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@

* The `CudaTensor` class no longer includes [Taskflow](https://taskflow.github.io/) headers. [(#56)](https://github.com/XanaduAI/jet/pull/56)

### Bug Fixes

* The paper benchmarks now fetch the Jet repository at tag "0.2.1". [(#62)](https://github.com/XanaduAI/jet/pull/62)


### Documentation

* Links to the [Jet paper](https://arxiv.org/abs/2107.09793) are now included in the README and Sphinx documentation. [(#59)](https://github.com/XanaduAI/jet/pull/59)
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ The output of this program should resemble
(-0.0786964,-0.771624)
(2.98721,-0.657124)
(-1.90032,1.58051)
You have successfully used Jet version 0.2.0
You have successfully used Jet version 0.2.1
For more detailed instructions, see the `development guide
<https://quantum-jet.readthedocs.io/en/stable/dev/guide.html>`_.
Expand Down Expand Up @@ -149,7 +149,7 @@ The output of this program should resemble
-0.16588-1.44652j
-1.43005+0.49516j
1.66881-1.67099j
You have successfully used Jet version 0.2.0
You have successfully used Jet version 0.2.1
Contributing to Jet
===================
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = "0.2.0"
release = "0.2.1"

# The short X.Y version.
version = re.match(r"^(\d+\.\d+)", release).expand(r"\1")
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Running the example should produce output similar to:
(1.53207,0)
(0.414398,0)
(0.721263,0)
You have successfully used Jet version 0.2.0
You have successfully used Jet version 0.2.1
Congratulations, you have successfully run your first Jet program!

Expand Down
2 changes: 1 addition & 1 deletion examples/paper_benchmarks/CPU/jet_cpu_gbs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Include(FetchContent)
FetchContent_Declare(
Jet
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
GIT_TAG 0.2.0
GIT_TAG 0.2.1
)
FetchContent_MakeAvailable(Jet)

Expand Down
2 changes: 1 addition & 1 deletion examples/paper_benchmarks/CPU/jet_cpu_m10/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Include(FetchContent)
FetchContent_Declare(
Jet
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
GIT_TAG 0.2.0
GIT_TAG 0.2.1
)
FetchContent_MakeAvailable(Jet)

Expand Down
2 changes: 1 addition & 1 deletion examples/paper_benchmarks/CPU/jet_cpu_m12/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Include(FetchContent)
FetchContent_Declare(
Jet
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
GIT_TAG 0.2.0
GIT_TAG 0.2.1
)
FetchContent_MakeAvailable(Jet)

Expand Down
2 changes: 1 addition & 1 deletion examples/paper_benchmarks/GPU/jet_gpu_m10/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Include(FetchContent)
FetchContent_Declare(
Jet
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
GIT_TAG 0.2.0
GIT_TAG 0.2.1
)
FetchContent_MakeAvailable(Jet)

Expand Down
2 changes: 1 addition & 1 deletion examples/paper_benchmarks/GPU/jet_gpu_m12/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Include(FetchContent)
FetchContent_Declare(
Jet
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
GIT_TAG 0.2.0
GIT_TAG 0.2.1
)
FetchContent_MakeAvailable(Jet)

Expand Down
2 changes: 1 addition & 1 deletion include/jet/Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ constexpr size_t MAJOR_VERSION = 0;
constexpr size_t MINOR_VERSION = 2;

/// Patch version number of Jet.
constexpr size_t PATCH_VERSION = 0;
constexpr size_t PATCH_VERSION = 1;

/**
* @brief Returns the current Jet version.
Expand Down

0 comments on commit 61eb3cf

Please sign in to comment.