File tree Expand file tree Collapse file tree 5 files changed +14
-15
lines changed Expand file tree Collapse file tree 5 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
- name : Setup Python
18
18
uses : actions/setup-python@v4
19
19
with :
20
- python-version : " 3.12 "
20
+ python-version : " 3.10 "
21
21
- uses : pdm-project/setup-pdm@v3
22
22
name : Setup PDM
23
23
with :
24
- python-version : 3.12
24
+ python-version : " 3.10 "
25
25
architecture : x64
26
26
enable-pep582 : true
27
27
cache : true
Original file line number Diff line number Diff line change @@ -14,18 +14,13 @@ repos:
14
14
args : [--fix, --exit-non-zero-on-fix, --show-fixes]
15
15
# TODO: Switch back to upstream docformatter
16
16
# 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
19
20
hooks :
20
21
- id : docformatter
21
22
additional_dependencies : [tomli]
22
23
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"]
29
24
- repo : https://github.com/pre-commit/mirrors-mypy
30
25
rev : v1.11.1
31
26
hooks :
44
39
hooks :
45
40
- id : nbstripout
46
41
- repo : https://github.com/pre-commit/pre-commit-hooks
47
- rev : v4.6 .0
42
+ rev : v5.0 .0
48
43
hooks :
49
44
- id : trailing-whitespace
50
45
- id : end-of-file-fixer
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.11.2] - 2024-10-14
11
+
10
12
### Added
11
13
12
14
- 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
397
399
- Created QuackOSM repository
398
400
- Implemented PbfFileReader
399
401
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
401
405
402
406
[ 0.11.1 ] : https://github.com/kraina-ai/quackosm/compare/0.11.0...0.11.1
403
407
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " QuackOSM"
3
- version = " 0.11.1 "
3
+ version = " 0.11.2 "
4
4
description = " An open-source tool for reading OpenStreetMap PBF files using DuckDB"
5
5
authors = [{ name = " Kamil Raczycki" , email = " kraczycki@kraina.ai" }]
6
6
dependencies = [
@@ -173,7 +173,7 @@ close-quotes-on-newline = true
173
173
wrap-one-line = true
174
174
175
175
[tool .bumpver ]
176
- current_version = " 0.11.1 "
176
+ current_version = " 0.11.2 "
177
177
version_pattern = " MAJOR.MINOR.PATCH[PYTAGNUM]"
178
178
commit_message = " chore(CI/CD): bump version {old_version} -> {new_version}"
179
179
commit = true
Original file line number Diff line number Diff line change 21
21
from quackosm .pbf_file_reader import PbfFileReader
22
22
23
23
__app_name__ = "QuackOSM"
24
- __version__ = "0.11.1 "
24
+ __version__ = "0.11.2 "
25
25
26
26
__all__ = [
27
27
"PbfFileReader" ,
You can’t perform that action at this time.
0 commit comments