Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.

Commit b885b84

Browse files
🔖 bump version 0.1.0 -> 0.2.0 (#5)
1 parent 4e5f3e3 commit b885b84

File tree

4 files changed

+19
-16
lines changed

4 files changed

+19
-16
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,6 @@ jobs:
6161
run: |
6262
uv run noxfile.py --session "tests(python='${{ matrix.python-version }}', django='${{ matrix.django-version }}')"
6363
64-
tests:
65-
runs-on: ubuntu-latest
66-
needs: test
67-
if: always()
68-
steps:
69-
- name: OK
70-
if: ${{ !(contains(needs.*.result, 'failure')) }}
71-
run: exit 0
72-
- name: Fail
73-
if: ${{ contains(needs.*.result, 'failure') }}
74-
run: exit 1
75-
7664
gdal:
7765
runs-on: ${{ matrix.os }}
7866
strategy:
@@ -106,6 +94,18 @@ jobs:
10694
run: |
10795
uv run noxfile.py --session "test"
10896
97+
tests:
98+
runs-on: ubuntu-latest
99+
needs: [gdal, test]
100+
if: always()
101+
steps:
102+
- name: OK
103+
if: ${{ !(contains(needs.*.result, 'failure')) }}
104+
run: exit 0
105+
- name: Fail
106+
if: ${{ contains(needs.*.result, 'failure') }}
107+
run: exit 1
108+
109109
types:
110110
runs-on: ubuntu-latest
111111
steps:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1717

1818
## [Unreleased]
1919

20+
## [0.2.0]
21+
2022
### Changed
2123

2224
- **Breaking**: Move monkeypatching from Django app's `ready()` method to dedicated function. Instead of just adding the app to `INSTALLED_APPS`, you now need to explicitly call `django_lazy_gdal.monkeypatch()` at the top of your settings file.
@@ -36,5 +38,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
3638

3739
- Josh Thomas <[email protected]> (maintainer)
3840

39-
[unreleased]: https://github.com/joshuadavidthomas/django-lazy-gdal/compare/v0.1.0...HEAD
41+
[unreleased]: https://github.com/joshuadavidthomas/django-lazy-gdal/compare/v0.2.0...HEAD
4042
[0.1.0]: https://github.com/joshuadavidthomas/django-lazy-gdal/releases/tag/v0.1.0
43+
[0.2.0]: https://github.com/joshuadavidthomas/django-lazy-gdal/releases/tag/v0.2.0

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ description = "A Django app for patching `django.contrib.gis` to lazily load the
4444
name = "django-lazy-gdal"
4545
readme = "README.md"
4646
requires-python = ">=3.9"
47-
version = "0.1.0"
47+
version = "0.2.0"
4848

4949
[project.urls]
5050
Documentation = "https://github.com/joshuadavidthomas/django-lazy-gdal#readme"
@@ -54,7 +54,7 @@ Source = "https://github.com/joshuadavidthomas/django-lazy-gdal"
5454
[tool.bumpver]
5555
commit = true
5656
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
57-
current_version = "0.1.0"
57+
current_version = "0.2.0"
5858
push = false # set to false for CI
5959
tag = false
6060
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)