[go: up one dir, main page]

Skip to content

Commit

Permalink
chore(CI/CD): bump version 0.11.1 -> 0.11.2 (#171)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
kraina-cicd and RaczeQ authored Oct 14, 2024
1 parent b3aa93b commit 9d41249
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-manual-pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: "3.10"
- uses: pdm-project/setup-pdm@v3
name: Setup PDM
with:
python-version: 3.12
python-version: "3.10"
architecture: x64
enable-pep582: true
cache: true
Expand Down
13 changes: 4 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,13 @@ repos:
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
# TODO: Switch back to upstream docformatter
# after https://github.com/PyCQA/docformatter/issues/289 is fixed
- repo: https://github.com/s-weigand/docformatter
rev: 1ec30b7
- repo: https://github.com/PyCQA/docformatter
rev: eb1df34
# rev: v1.7.5
hooks:
- id: docformatter
additional_dependencies: [tomli]
args: [--in-place, --config, ./pyproject.toml]
# - repo: https://github.com/PyCQA/docformatter
# rev: v1.7.5
# hooks:
# - id: docformatter
# additional_dependencies: [tomli]
# args: ["--in-place", "--config", "./pyproject.toml"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.1
hooks:
Expand All @@ -44,7 +39,7 @@ repos:
hooks:
- id: nbstripout
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand Down
6 changes: 5 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]

## [0.11.2] - 2024-10-14

### Added

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

[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.1...HEAD
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.2...HEAD

[0.11.2]: https://github.com/kraina-ai/quackosm/compare/0.11.1...0.11.2

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

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "QuackOSM"
version = "0.11.1"
version = "0.11.2"
description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB"
authors = [{ name = "Kamil Raczycki", email = "kraczycki@kraina.ai" }]
dependencies = [
Expand Down Expand Up @@ -173,7 +173,7 @@ close-quotes-on-newline = true
wrap-one-line = true

[tool.bumpver]
current_version = "0.11.1"
current_version = "0.11.2"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion quackosm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from quackosm.pbf_file_reader import PbfFileReader

__app_name__ = "QuackOSM"
__version__ = "0.11.1"
__version__ = "0.11.2"

__all__ = [
"PbfFileReader",
Expand Down

0 comments on commit 9d41249

Please sign in to comment.