Skip to content

Commit 9d41249

Browse files
kraina-cicdRaczeQ
andauthored
chore(CI/CD): bump version 0.11.1 -> 0.11.2 (#171)
* chore(CI/CD): bump version 0.11.1 -> 0.11.2 * docs: update CHANGELOG.md * ci: change pre-commit-config * chore: update pre-commit hooks --------- Co-authored-by: Kamil Raczycki <raczyckikamil@gmail.com>
1 parent b3aa93b commit 9d41249

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

.github/workflows/run-manual-pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- name: Setup Python
1818
uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.12"
20+
python-version: "3.10"
2121
- uses: pdm-project/setup-pdm@v3
2222
name: Setup PDM
2323
with:
24-
python-version: 3.12
24+
python-version: "3.10"
2525
architecture: x64
2626
enable-pep582: true
2727
cache: true

.pre-commit-config.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,13 @@ repos:
1414
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
1515
# TODO: Switch back to upstream docformatter
1616
# after https://github.com/PyCQA/docformatter/issues/289 is fixed
17-
- repo: https://github.com/s-weigand/docformatter
18-
rev: 1ec30b7
17+
- repo: https://github.com/PyCQA/docformatter
18+
rev: eb1df34
19+
# rev: v1.7.5
1920
hooks:
2021
- id: docformatter
2122
additional_dependencies: [tomli]
2223
args: [--in-place, --config, ./pyproject.toml]
23-
# - repo: https://github.com/PyCQA/docformatter
24-
# rev: v1.7.5
25-
# hooks:
26-
# - id: docformatter
27-
# additional_dependencies: [tomli]
28-
# args: ["--in-place", "--config", "./pyproject.toml"]
2924
- repo: https://github.com/pre-commit/mirrors-mypy
3025
rev: v1.11.1
3126
hooks:
@@ -44,7 +39,7 @@ repos:
4439
hooks:
4540
- id: nbstripout
4641
- repo: https://github.com/pre-commit/pre-commit-hooks
47-
rev: v4.6.0
42+
rev: v5.0.0
4843
hooks:
4944
- id: trailing-whitespace
5045
- id: end-of-file-fixer

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

1214
- Option to pass a bounding box as a geometry filter in CLI [#169](https://github.com/kraina-ai/quackosm/issues/169)
@@ -397,7 +399,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
397399
- Created QuackOSM repository
398400
- Implemented PbfFileReader
399401

400-
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.1...HEAD
402+
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.2...HEAD
403+
404+
[0.11.2]: https://github.com/kraina-ai/quackosm/compare/0.11.1...0.11.2
401405

402406
[0.11.1]: https://github.com/kraina-ai/quackosm/compare/0.11.0...0.11.1
403407

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

2626
__all__ = [
2727
"PbfFileReader",

0 commit comments

Comments
 (0)