Skip to content

Commit 528c3e0

Browse files
authored
chore(CI/CD): bump version 0.11.4 -> 0.12.0 (#181)
* chore(CI/CD): bump version 0.11.4 -> 0.12.0 * docs: update CHANGELOG.md
1 parent e291608 commit 528c3e0

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.12.0] - 2024-11-03
11+
1012
### Added
1113

1214
- Option to pass custom SQL filters with `custom_sql_filter` (and `--custom-sql-filter`) parameter [#67](https://github.com/kraina-ai/quackosm/issues/67)
@@ -419,7 +421,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
419421
- Created QuackOSM repository
420422
- Implemented PbfFileReader
421423

422-
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.4...HEAD
424+
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.12.0...HEAD
425+
426+
[0.12.0]: https://github.com/kraina-ai/quackosm/compare/0.11.4...0.12.0
423427

424428
[0.11.4]: https://github.com/kraina-ai/quackosm/compare/0.11.3...0.11.4
425429

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "QuackOSM"
3-
version = "0.11.4"
3+
version = "0.12.0"
44
description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB"
55
authors = [{ name = "Kamil Raczycki", email = "kraczycki@kraina.ai" }]
66
dependencies = [
@@ -173,7 +173,7 @@ close-quotes-on-newline = true
173173
wrap-one-line = true
174174

175175
[tool.bumpver]
176-
current_version = "0.11.4"
176+
current_version = "0.12.0"
177177
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
178178
commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}"
179179
commit = true

quackosm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from quackosm.pbf_file_reader import PbfFileReader
2222

2323
__app_name__ = "QuackOSM"
24-
__version__ = "0.11.4"
24+
__version__ = "0.12.0"
2525

2626
__all__ = [
2727
"PbfFileReader",

0 commit comments

Comments
 (0)