Skip to content

Commit

Permalink
bump version (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisac authored Sep 3, 2021
1 parent c760a0a commit 7017e47
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
8 changes: 3 additions & 5 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Version 0.17.0-dev

### New features
# Version 0.16.1

### Improvements

* Faster implementation of `hermite_multidimensional_numba` and `hermite_multidimensional_numba_grad`. [#280](https://github.com/XanaduAI/thewalrus/pull/280)

### Bug fixes

* Updates the `samples.generate_torontonian_sample` function to ensure probabilities are normalized. [#250](https://github.com/XanaduAI/thewalrus/pull/250)

* Pins Numba to version `<0.54` to avoid binary imcompatibilities with the 1.21 release of NumPy. [#250](https://github.com/XanaduAI/thewalrus/pull/250)

### Breaking changes

### Contributors

This release contains contributions from (in alphabetical order):
Expand Down
6 changes: 3 additions & 3 deletions include/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
#define HAFNIAN_VERSION_MAJOR 0

/// The minor version number
#define HAFNIAN_VERSION_MINOR 17
#define HAFNIAN_VERSION_MINOR 16

/// The patch number
#define HAFNIAN_VERSION_PATCH 0
#define HAFNIAN_VERSION_PATCH 1

/// The complete version number
#define HAFNIAN_VERSION_CODE (HAFNIAN_VERSION_MAJOR * 10000 + HAFNIAN_VERSION_MINOR * 100 + HAFNIAN_VERSION_PATCH)

/// Version number as string
#define HAFNIAN_VERSION_STRING "0.17.0"
#define HAFNIAN_VERSION_STRING "0.16.1"
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.17.0-dev"
__version__ = "0.16.1"

0 comments on commit 7017e47

Please sign in to comment.