Skip to content

Commit

Permalink
Incrementing the version number to 0.18.0 (#313)
Browse files Browse the repository at this point in the history
* bump version

* update changelog

* move c++ to breaking changes

* Update .github/CHANGELOG.md

Co-authored-by: Sebastián Duque Mesa <[email protected]>

Co-authored-by: Sebastián Duque Mesa <[email protected]>
  • Loading branch information
thisac and sduquemesa authored Dec 16, 2021
1 parent e531787 commit fc35696
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
# 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

* Permanent algorithms are implemented in Python using Numba just-in-time compilation. [#300](https://github.com/XanaduAI/thewalrus/pull/300)

* 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)
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion thewalrus/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.18.0-dev"
__version__ = "0.18.0"

0 comments on commit fc35696

Please sign in to comment.