Skip to content

Commit

Permalink
Bump version: 5.0.1 → 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SethMMorton committed Nov 29, 2023
1 parent 8af03d0 commit 9fa5318
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Unreleased
---

[5.1.0] - 2023-11-28
---

### Added

- Added the ``denoise`` option to convert floats to int without
Expand Down Expand Up @@ -448,6 +451,7 @@ Unreleased
- Initial release of `fastnumbers`

<!---Comparison links-->
[5.1.0]: https://github.com/SethMMorton/fastnumbers/compare/5.0.1...5.1.0
[5.0.1]: https://github.com/SethMMorton/fastnumbers/compare/5.0.0...5.0.1
[5.0.0]: https://github.com/SethMMorton/fastnumbers/compare/4.0.1...5.0.0
[4.0.1]: https://github.com/SethMMorton/fastnumbers/compare/4.0.0...4.0.1
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = "5.0.1"
release = "5.1.0"
# The short X.Y version.
version = ".".join(release.split(".")[0:2])

Expand Down
2 changes: 1 addition & 1 deletion include/fastnumbers/version.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

/// The version of this fastnumbers release
constexpr const char* FASTNUMBERS_VERSION = "5.0.1";
constexpr const char* FASTNUMBERS_VERSION = "5.1.0";
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.0.1
current_version = 5.1.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# All other data is in the setup.cfg file.
setup(
name="fastnumbers",
version="5.0.1",
version="5.1.0",
python_requires=">=3.7",
packages=find_packages(where="src"),
package_dir={"": "src"},
Expand Down

0 comments on commit 9fa5318

Please sign in to comment.