Skip to content

Commit

Permalink
chore(CI/CD): bump version 0.9.1 -> 0.9.2 (#147)
Browse files Browse the repository at this point in the history
* chore(CI/CD): bump version 0.9.1 -> 0.9.2

* docs: update CHANGELOG.md

* chore: set minimal numpy version

* chore: expand newest dependencies testing matrix

* chore: change conftest imports

---------

Co-authored-by: Kamil Raczycki <[email protected]>
  • Loading branch information
kraina-cicd and RaczeQ authored Aug 29, 2024
1 parent 52dc61f commit 05bd663
Show file tree
Hide file tree
Showing 9 changed files with 1,216 additions and 1,204 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/manual_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
python-version: ["3.12"]
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: macos-latest
python-version: "3.12"
- os: macos-13
python-version: "3.12"
- os: windows-latest
python-version: "3.12"
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.2] - 2024-08-28

### Changed

- Removed `pyarrow-ops` dependency and replaced it with simpler implementation
- Removed `srai` dependency from tests
- Set minimal `numpy` version

## [0.9.1] - 2024-08-28

Expand Down Expand Up @@ -347,7 +350,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.9.1...HEAD
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.9.2...HEAD

[0.9.2]: https://github.com/kraina-ai/quackosm/compare/0.9.1...0.9.2

[0.9.1]: https://github.com/kraina-ai/quackosm/compare/0.9.0...0.9.1

Expand Down
3 changes: 2 additions & 1 deletion pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "QuackOSM"
version = "0.9.1"
version = "0.9.2"
description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB"
authors = [{ name = "Kamil Raczycki", email = "[email protected]" }]
dependencies = [
Expand All @@ -20,6 +20,7 @@ dependencies = [
"rich>=12.0.0",
"geoarrow-rust-core>=0.2.0",
"geopy>=2.0.0",
"numpy>=1.26.0",
]
requires-python = ">=3.9"
readme = "README.md"
Expand Down Expand Up @@ -170,7 +171,7 @@ close-quotes-on-newline = true
wrap-one-line = true

[tool.bumpver]
current_version = "0.9.1"
current_version = "0.9.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 @@ -18,7 +18,7 @@
from quackosm.pbf_file_reader import PbfFileReader

__app_name__ = "QuackOSM"
__version__ = "0.9.1"
__version__ = "0.9.2"

__all__ = [
"PbfFileReader",
Expand Down
Loading

0 comments on commit 05bd663

Please sign in to comment.