Skip to content

Commit 11ff35b

Browse files
committed
1.1.2 -> 1.2.0
1 parent ede5a1d commit 11ff35b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
echo version=$(python -c'import geojson_pydantic; print(geojson_pydantic.__version__)') >> $GITHUB_OUTPUT
8383
8484
- name: Build and publish
85-
if: steps.tag.outputs.tag == steps.module.outputs.version
85+
if: ${{ steps.tag.outputs.version }} == ${{ steps.module.outputs.version}}
8686
env:
8787
FLIT_USERNAME: ${{ secrets.PYPI_USERNAME }}
8888
FLIT_PASSWORD: ${{ secrets.PYPI_PASSWORD }}

.github/workflows/deploy_mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Checkout main
2020
uses: actions/checkout@v2
2121

22-
- name: Set up Python 3.8
22+
- name: Set up Python 3.9
2323
uses: actions/setup-python@v2
2424
with:
25-
python-version: 3.8
25+
python-version: 3.9
2626

2727
- name: Install dependencies
2828
run: |

geojson_pydantic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Polygon,
1212
)
1313

14-
__version__ = "1.1.2"
14+
__version__ = "1.2.0"
1515

1616
__all__ = [
1717
"Feature",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "geojson-pydantic"
33
description = "Pydantic data models for the GeoJSON spec."
44
readme = "README.md"
5-
requires-python = ">=3.8"
5+
requires-python = ">=3.9"
66
license = {file = "LICENSE"}
77
authors = [
88
{name = "Drew Bollinger", email = "[email protected]"},
@@ -100,7 +100,7 @@ ignore = [
100100
"tests/*.py" = ["D1"]
101101

102102
[tool.bumpversion]
103-
current_version = "1.1.2"
103+
current_version = "1.2.0"
104104

105105
search = "{current_version}"
106106
replace = "{new_version}"

0 commit comments

Comments
 (0)