Skip to content

Commit beb7e67

Browse files
authored
chore(CI/CD): bump version 0.11.0 -> 0.11.1 (#167)
* chore(CI/CD): bump version 0.11.0 -> 0.11.1 * docs: update CHANGELOG.md
1 parent 61dd66f commit beb7e67

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.11.1] - 2024-10-09
11+
1012
### Added
1113

1214
- Option to export to DuckDB database [#94](https://github.com/kraina-ai/quackosm/issues/119) (implemented by [@mwip](https://github.com/mwip))
@@ -387,7 +389,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
387389
- Created QuackOSM repository
388390
- Implemented PbfFileReader
389391

390-
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.0...HEAD
392+
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.1...HEAD
393+
394+
[0.11.1]: https://github.com/kraina-ai/quackosm/compare/0.11.0...0.11.1
391395

392396
[0.11.0]: https://github.com/kraina-ai/quackosm/compare/0.10.0...0.11.0
393397

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.0"
3+
version = "0.11.1"
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.0"
176+
current_version = "0.11.1"
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.0"
24+
__version__ = "0.11.1"
2525

2626
__all__ = [
2727
"PbfFileReader",

0 commit comments

Comments
 (0)