Skip to content

Commit

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

* wording
  • Loading branch information
thisac committed Sep 16, 2021
1 parent e8cd54c commit 638903c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
11 changes: 4 additions & 7 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
# Version 0.17.0-dev

### New features

### Improvements
# Version 0.16.2

### Bug fixes
* `hermite_multidimensional_numba` now can handle a cutoff of type `np.ndarray` with `shape=[]`. [#283](https://github.com/XanaduAI/thewalrus/pull/283)
### Breaking changes
* `hermite_multidimensional_numba` can now handle a cutoff of type `np.ndarray` with `shape=[]`. [#283](https://github.com/XanaduAI/thewalrus/pull/283)

### Contributors

This release contains contributions from (in alphabetical order):

Filippo Miatto

---

# Version 0.16.1
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 2

/// 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.2"
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.2"

0 comments on commit 638903c

Please sign in to comment.