Skip to content

Commit

Permalink
chore(CI/CD): bump version 0.0.1 -> 0.1.0 (#3)
Browse files Browse the repository at this point in the history
* chore(CI/CD): bump version 0.0.1 -> 0.1.0

* docs: update CHANGELOG.md

---------

Co-authored-by: Kamil Raczycki <[email protected]>
  • Loading branch information
kraina-cicd and RaczeQ authored Dec 29, 2023
1 parent 081a237 commit 40e4eb4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0] - 2023-12-29

### Added

- Created QuackOSM repository
- Implemented PbfFileReader

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

[0.1.0]: https://github.com/kraina-ai/quackosm/releases/tag/0.1.0
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.0.1"
version = "0.1.0"
description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB"
authors = [{ name = "Kamil Raczycki", email = "[email protected]" }]
dependencies = [
Expand Down Expand Up @@ -134,7 +134,7 @@ close-quotes-on-newline = true
wrap-one-line = true

[tool.bumpver]
current_version = "0.0.1"
current_version = "0.1.0"
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 @@ -8,7 +8,7 @@
from quackosm.functions import convert_pbf_to_gpq, get_features_gdf
from quackosm.pbf_file_reader import PbfFileReader

__version__ = "0.0.1"
__version__ = "0.1.0"

__all__ = [
"PbfFileReader",
Expand Down

0 comments on commit 40e4eb4

Please sign in to comment.