Skip to content

Commit 30af8a0

Browse files
committed
chore: release v0.14.0
- Bump version to 0.14.0 - Update CHANGELOG.md
1 parent deb6222 commit 30af8a0

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.13.0"
2+
current_version = "0.14.0"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55
search = "{current_version}"

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.14.0] - 2026-02-17
9+
10+
### Added
11+
12+
- Replace hash-based IDs with semantic versioning for variant ID generation (#163) by @mfkaptan-motius in [#163](https://github.com/COVESA/s2dm/pull/163)
13+
14+
15+
### Changed
16+
17+
- Some bugs fixed for the search function (#165) by @Giaccomole in [#165](https://github.com/COVESA/s2dm/pull/165)
18+
19+
20+
[0.14.0] - 2026-02-17: https://github.com/COVESA/s2dm/compare/v0.13.0..HEAD
21+
22+
<!-- generated by git-cliff -->
23+
824
## [0.13.0] - 2026-02-04
925

1026
### Added

src/s2dm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
__author__ = """Daniel Alvarez-Coello"""
44
__email__ = "8550265+jdacoello@users.noreply.github.com"
5-
__version__ = "0.13.0"
5+
__version__ = "0.14.0"
66

77
log = get_logger("s2dm")

tests/test_s2dm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_s2dm() -> None:
5-
assert s2dm.__version__ == "0.13.0"
5+
assert s2dm.__version__ == "0.14.0"

0 commit comments

Comments
 (0)