Skip to content

Commit

Permalink
Bump version: 4.1.0.dev1 → 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rsundqvist committed Jun 29, 2024
1 parent 882fa21 commit 62cd5e6
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 = 4.1.0.dev1
current_version = 4.1.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]

## [4.1.1] - 2024-06-29

### Fixed
- Fix handling of `paths.parse_any_path()` bool-type postprocessors (raise on `False`).

Expand Down Expand Up @@ -479,7 +481,8 @@ First release on PyPI!
- The `rics.mapping` package for linking elements in multiple directions.
- The `rics.cardinality` package; enum types for `1:1`, `1:N`, `N:1`, and `M:N`.

[Unreleased]: https://github.com/rsundqvist/rics/compare/v4.1.0...HEAD
[Unreleased]: https://github.com/rsundqvist/rics/compare/v4.1.1...HEAD
[4.1.1]: https://github.com/rsundqvist/rics/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/rsundqvist/rics/compare/v4.0.1...v4.1.0
[4.0.1]: https://github.com/rsundqvist/rics/compare/v4.0.0...v4.0.1
[4.0.0]: https://github.com/rsundqvist/rics/compare/v3.3.0...v4.0.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 = "rics"
version = "4.1.0.dev1"
version = "4.1.1"
description = "My personal little ML engineering library."
authors = ["Richard Sundqvist <richard.sundqvist@live.se>"]

Expand Down
2 changes: 1 addition & 1 deletion src/rics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"__version__",
]

__version__ = "4.1.0.dev1"
__version__ = "4.1.1"

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

0 comments on commit 62cd5e6

Please sign in to comment.