From 61eb3cf6357ef28798ad459289af225455f1608c Mon Sep 17 00:00:00 2001 From: Mikhail Andrenkov Date: Mon, 9 Aug 2021 08:37:48 -0400 Subject: [PATCH] Update Jet version to 0.2.1 (#62) * Update Jet version to 0.2.1 * Update changelog --- .github/CHANGELOG.md | 5 +++++ README.rst | 4 ++-- docs/conf.py | 2 +- docs/dev/guide.rst | 2 +- examples/paper_benchmarks/CPU/jet_cpu_gbs/CMakeLists.txt | 2 +- examples/paper_benchmarks/CPU/jet_cpu_m10/CMakeLists.txt | 2 +- examples/paper_benchmarks/CPU/jet_cpu_m12/CMakeLists.txt | 2 +- examples/paper_benchmarks/GPU/jet_gpu_m10/CMakeLists.txt | 2 +- examples/paper_benchmarks/GPU/jet_gpu_m12/CMakeLists.txt | 2 +- include/jet/Version.hpp | 2 +- 10 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index fab04918..c0a2e61b 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -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) diff --git a/README.rst b/README.rst index e91af11f..ad6aeed7 100644 --- a/README.rst +++ b/README.rst @@ -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 `_. @@ -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 =================== diff --git a/docs/conf.py b/docs/conf.py index 812d29bc..c7bbe1bb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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") diff --git a/docs/dev/guide.rst b/docs/dev/guide.rst index 6cd4574c..11bb013c 100644 --- a/docs/dev/guide.rst +++ b/docs/dev/guide.rst @@ -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! diff --git a/examples/paper_benchmarks/CPU/jet_cpu_gbs/CMakeLists.txt b/examples/paper_benchmarks/CPU/jet_cpu_gbs/CMakeLists.txt index 17eb2404..48f780a5 100644 --- a/examples/paper_benchmarks/CPU/jet_cpu_gbs/CMakeLists.txt +++ b/examples/paper_benchmarks/CPU/jet_cpu_gbs/CMakeLists.txt @@ -19,7 +19,7 @@ Include(FetchContent) FetchContent_Declare( Jet GIT_REPOSITORY git@github.com:XanaduAI/jet.git - GIT_TAG 0.2.0 + GIT_TAG 0.2.1 ) FetchContent_MakeAvailable(Jet) diff --git a/examples/paper_benchmarks/CPU/jet_cpu_m10/CMakeLists.txt b/examples/paper_benchmarks/CPU/jet_cpu_m10/CMakeLists.txt index 4f751765..a4cf9cc3 100644 --- a/examples/paper_benchmarks/CPU/jet_cpu_m10/CMakeLists.txt +++ b/examples/paper_benchmarks/CPU/jet_cpu_m10/CMakeLists.txt @@ -19,7 +19,7 @@ Include(FetchContent) FetchContent_Declare( Jet GIT_REPOSITORY git@github.com:XanaduAI/jet.git - GIT_TAG 0.2.0 + GIT_TAG 0.2.1 ) FetchContent_MakeAvailable(Jet) diff --git a/examples/paper_benchmarks/CPU/jet_cpu_m12/CMakeLists.txt b/examples/paper_benchmarks/CPU/jet_cpu_m12/CMakeLists.txt index 42b7e7f7..d1485b12 100644 --- a/examples/paper_benchmarks/CPU/jet_cpu_m12/CMakeLists.txt +++ b/examples/paper_benchmarks/CPU/jet_cpu_m12/CMakeLists.txt @@ -19,7 +19,7 @@ Include(FetchContent) FetchContent_Declare( Jet GIT_REPOSITORY git@github.com:XanaduAI/jet.git - GIT_TAG 0.2.0 + GIT_TAG 0.2.1 ) FetchContent_MakeAvailable(Jet) diff --git a/examples/paper_benchmarks/GPU/jet_gpu_m10/CMakeLists.txt b/examples/paper_benchmarks/GPU/jet_gpu_m10/CMakeLists.txt index 716df1dd..7d99c6f0 100644 --- a/examples/paper_benchmarks/GPU/jet_gpu_m10/CMakeLists.txt +++ b/examples/paper_benchmarks/GPU/jet_gpu_m10/CMakeLists.txt @@ -16,7 +16,7 @@ Include(FetchContent) FetchContent_Declare( Jet GIT_REPOSITORY git@github.com:XanaduAI/jet.git - GIT_TAG 0.2.0 + GIT_TAG 0.2.1 ) FetchContent_MakeAvailable(Jet) diff --git a/examples/paper_benchmarks/GPU/jet_gpu_m12/CMakeLists.txt b/examples/paper_benchmarks/GPU/jet_gpu_m12/CMakeLists.txt index f34c205d..07b80c63 100644 --- a/examples/paper_benchmarks/GPU/jet_gpu_m12/CMakeLists.txt +++ b/examples/paper_benchmarks/GPU/jet_gpu_m12/CMakeLists.txt @@ -19,7 +19,7 @@ Include(FetchContent) FetchContent_Declare( Jet GIT_REPOSITORY git@github.com:XanaduAI/jet.git - GIT_TAG 0.2.0 + GIT_TAG 0.2.1 ) FetchContent_MakeAvailable(Jet) diff --git a/include/jet/Version.hpp b/include/jet/Version.hpp index 16305389..96c75cf7 100644 --- a/include/jet/Version.hpp +++ b/include/jet/Version.hpp @@ -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.