diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 400d9748d..782365590 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,8 +1,8 @@ -# Version 0.18.0-dev +# Version 0.18.0 ### New features -* Python module for the La Budde method of computing characteristic polynomials. [#304](Add python code for the labudde algorithm) +* Python module for the La Budde method of computing characteristic polynomials. [#304](https://github.com/XanaduAI/thewalrus/pull/304) ### Improvements @@ -10,11 +10,8 @@ * Hafnian algorithms are implemented in Python using Numba just-in-time compilation. [#311](https://github.com/XanaduAI/thewalrus/pull/311) -* The Walrus is no longer dependent on C++, and all C++-related code and documentation is removed. Instead, all code has been ported to Python using just-in-time compilation to improve performance. [#311](https://github.com/XanaduAI/thewalrus/pull/311) - * Documentation is updated to include the characteristic polynomials and decompositions modules. [#312](https://github.com/XanaduAI/thewalrus/pull/312) - ### Bug fixes * Makes modules reachable via the global namespace, instead of requiring importing the modules explicitly. [#312](https://github.com/XanaduAI/thewalrus/pull/312) @@ -24,7 +21,9 @@ tw.samples.generate_torontonian_sample ``` -### Breaking changes +### Breaking Changes + +* The Walrus is no longer dependent on C++, and all C++-related code and documentation is removed. Instead, all code has been ported to Python using just-in-time compilation to improve performance. [#311](https://github.com/XanaduAI/thewalrus/pull/311) ### Contributors diff --git a/thewalrus/_version.py b/thewalrus/_version.py index 4400b6997..e74c67923 100644 --- a/thewalrus/_version.py +++ b/thewalrus/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.18.0-dev" +__version__ = "0.18.0"