Skip to content

Commit

Permalink
Bump version: 0.10.0.dev1 → 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rsundqvist committed Apr 17, 2024
1 parent 932f571 commit 4632ef7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = False
current_version = 0.10.0.dev1
current_version = 0.10.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.dev(?P<dev>\d+))?
serialize =
{major}.{minor}.{patch}.dev{dev}
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.1] - 2024-04-17

### Fixed
- Rewrite the [Override-only mapping](https://id-translation.readthedocs.io/en/stable/documentation/mapping-primer.html#override-only-mapping)
subsection in the mapping primer. Improve clarity and fix some confusing sentences.
Expand Down Expand Up @@ -269,7 +271,8 @@ cookiecutter template.
- Switch to relative imports.
- Fix some intersphinx issues.

[Unreleased]: https://github.com/rsundqvist/id-translation/compare/v0.10.0...HEAD
[Unreleased]: https://github.com/rsundqvist/id-translation/compare/v0.10.1...HEAD
[0.10.1]: https://github.com/rsundqvist/id-translator/compare/v0.10.0...v0.10.1
[0.10.0]: https://github.com/rsundqvist/id-translator/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/rsundqvist/id-translator/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/rsundqvist/id-translator/compare/v0.7.1...v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "id-translation"
version = "0.10.0.dev1"
version = "0.10.1"
description = "Convert IDs into human-readable labels."
authors = ["Richard Sundqvist <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion src/id_translation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"__version__", # Make MyPy happy
]

__version__ = "0.10.0.dev1"
__version__ = "0.10.1"

_logging.getLogger(__name__).addHandler(_logging.NullHandler())

0 comments on commit 4632ef7

Please sign in to comment.