Skip to content

Commit 61eb3cf

Browse files
authored
Update Jet version to 0.2.1 (#62)
* Update Jet version to 0.2.1 * Update changelog
1 parent b899275 commit 61eb3cf

File tree

10 files changed

+15
-10
lines changed

10 files changed

+15
-10
lines changed

.github/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88

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

11+
### Bug Fixes
12+
13+
* The paper benchmarks now fetch the Jet repository at tag "0.2.1". [(#62)](https://github.com/XanaduAI/jet/pull/62)
14+
15+
1116
### Documentation
1217

1318
* 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)

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The output of this program should resemble
9999
(-0.0786964,-0.771624)
100100
(2.98721,-0.657124)
101101
(-1.90032,1.58051)
102-
You have successfully used Jet version 0.2.0
102+
You have successfully used Jet version 0.2.1
103103
104104
For more detailed instructions, see the `development guide
105105
<https://quantum-jet.readthedocs.io/en/stable/dev/guide.html>`_.
@@ -149,7 +149,7 @@ The output of this program should resemble
149149
-0.16588-1.44652j
150150
-1.43005+0.49516j
151151
1.66881-1.67099j
152-
You have successfully used Jet version 0.2.0
152+
You have successfully used Jet version 0.2.1
153153
154154
Contributing to Jet
155155
===================

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
# built documents.
134134
#
135135
# The full version, including alpha/beta/rc tags.
136-
release = "0.2.0"
136+
release = "0.2.1"
137137

138138
# The short X.Y version.
139139
version = re.match(r"^(\d+\.\d+)", release).expand(r"\1")

docs/dev/guide.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Running the example should produce output similar to:
9999
(1.53207,0)
100100
(0.414398,0)
101101
(0.721263,0)
102-
You have successfully used Jet version 0.2.0
102+
You have successfully used Jet version 0.2.1
103103
104104
Congratulations, you have successfully run your first Jet program!
105105

examples/paper_benchmarks/CPU/jet_cpu_gbs/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Include(FetchContent)
1919
FetchContent_Declare(
2020
Jet
2121
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
22-
GIT_TAG 0.2.0
22+
GIT_TAG 0.2.1
2323
)
2424
FetchContent_MakeAvailable(Jet)
2525

examples/paper_benchmarks/CPU/jet_cpu_m10/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Include(FetchContent)
1919
FetchContent_Declare(
2020
Jet
2121
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
22-
GIT_TAG 0.2.0
22+
GIT_TAG 0.2.1
2323
)
2424
FetchContent_MakeAvailable(Jet)
2525

examples/paper_benchmarks/CPU/jet_cpu_m12/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Include(FetchContent)
1919
FetchContent_Declare(
2020
Jet
2121
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
22-
GIT_TAG 0.2.0
22+
GIT_TAG 0.2.1
2323
)
2424
FetchContent_MakeAvailable(Jet)
2525

examples/paper_benchmarks/GPU/jet_gpu_m10/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Include(FetchContent)
1616
FetchContent_Declare(
1717
Jet
1818
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
19-
GIT_TAG 0.2.0
19+
GIT_TAG 0.2.1
2020
)
2121
FetchContent_MakeAvailable(Jet)
2222

examples/paper_benchmarks/GPU/jet_gpu_m12/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Include(FetchContent)
1919
FetchContent_Declare(
2020
Jet
2121
GIT_REPOSITORY [email protected]:XanaduAI/jet.git
22-
GIT_TAG 0.2.0
22+
GIT_TAG 0.2.1
2323
)
2424
FetchContent_MakeAvailable(Jet)
2525

include/jet/Version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ constexpr size_t MAJOR_VERSION = 0;
1111
constexpr size_t MINOR_VERSION = 2;
1212

1313
/// Patch version number of Jet.
14-
constexpr size_t PATCH_VERSION = 0;
14+
constexpr size_t PATCH_VERSION = 1;
1515

1616
/**
1717
* @brief Returns the current Jet version.

0 commit comments

Comments
 (0)