Skip to content

Commit fc4fc33

Browse files
committed
bump: version 0.1.6.post1 -> 0.1.7
1 parent 1bff541 commit fc4fc33

File tree

5 files changed

+1943
-1782
lines changed

5 files changed

+1943
-1782
lines changed

.github/workflows/bump.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ jobs:
6262
# Propogate new version to meson.build
6363
uv run --no-sync python scripts/propogate-pyproject-metadata.py
6464
65+
# Lock everything again
66+
git add .
67+
uv run --no-sync pre-commit run --all-files
68+
git add .
69+
6570
# Commit, tag and push
6671
git commit -a -m "bump: version $BASE_VERSION -> $NEW_VERSION"
6772
git tag v$NEW_VERSION

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ from the examples given in that link.
2121

2222
<!-- towncrier release notes start -->
2323

24+
## Example fgen - basic v0.1.7 (2025-08-18)
25+
26+
No significant changes.
27+
28+
2429
## Example fgen - basic v0.1.6 (2025-08-14)
2530

2631
### 🔧 Trivial/Internal Changes

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(
33
['c', 'fortran'], # C as f2py creates C files so we need a C compiler
44
# Dev version (i.e. anything that isn't a release) will be 0.0.0
55
# because meson doesn't support pre-release identifiers like `.a`, `.post`
6-
version: '0.0.0', # injected with scripts/make-version-consistent.py, don't edit by hand
6+
version: '0.1.7', # injected with scripts/make-version-consistent.py, don't edit by hand
77
license: 'BSD-3-Clause',
88
meson_version: '>=1.3.0',
99
default_options: [

pyproject.toml

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "example-fgen-basic"
3-
version = "0.1.6.post1"
3+
version = "0.1.7"
44
description = "Basic example of using fgen"
55
authors = [
66
{ name = "Zebedee Nicholls", email = "zebedee.nicholls@climate-energy-college.org" },
@@ -100,6 +100,59 @@ full-locked = [
100100
"typing-extensions==4.12.2",
101101
"zipp==3.23.0 ; python_full_version < '3.10'",
102102
]
103+
locked-locked = [
104+
"attrs==25.3.0",
105+
"numpy==2.0.2 ; python_full_version < '3.10'",
106+
"numpy==2.2.6 ; python_full_version == '3.10.*'",
107+
"numpy==2.3.2 ; python_full_version >= '3.11'",
108+
"typing-extensions==4.12.2",
109+
]
110+
plots-locked-locked = [
111+
"attrs==25.3.0",
112+
"contourpy==1.3.0 ; python_full_version < '3.10'",
113+
"contourpy==1.3.2 ; python_full_version == '3.10.*'",
114+
"contourpy==1.3.3 ; python_full_version >= '3.11'",
115+
"cycler==0.12.1",
116+
"fonttools==4.59.0",
117+
"importlib-resources==6.5.2 ; python_full_version < '3.10'",
118+
"kiwisolver==1.4.7 ; python_full_version < '3.10'",
119+
"kiwisolver==1.4.9 ; python_full_version >= '3.10'",
120+
"matplotlib==3.9.4 ; python_full_version < '3.10'",
121+
"matplotlib==3.10.5 ; python_full_version >= '3.10'",
122+
"numpy==2.0.2 ; python_full_version < '3.10'",
123+
"numpy==2.2.6 ; python_full_version == '3.10.*'",
124+
"numpy==2.3.2 ; python_full_version >= '3.11'",
125+
"packaging==24.2",
126+
"pillow==11.3.0",
127+
"pyparsing==3.2.3",
128+
"python-dateutil==2.9.0.post0",
129+
"six==1.17.0",
130+
"typing-extensions==4.12.2",
131+
"zipp==3.23.0 ; python_full_version < '3.10'",
132+
]
133+
full-locked-locked = [
134+
"attrs==25.3.0",
135+
"contourpy==1.3.0 ; python_full_version < '3.10'",
136+
"contourpy==1.3.2 ; python_full_version == '3.10.*'",
137+
"contourpy==1.3.3 ; python_full_version >= '3.11'",
138+
"cycler==0.12.1",
139+
"fonttools==4.59.0",
140+
"importlib-resources==6.5.2 ; python_full_version < '3.10'",
141+
"kiwisolver==1.4.7 ; python_full_version < '3.10'",
142+
"kiwisolver==1.4.9 ; python_full_version >= '3.10'",
143+
"matplotlib==3.9.4 ; python_full_version < '3.10'",
144+
"matplotlib==3.10.5 ; python_full_version >= '3.10'",
145+
"numpy==2.0.2 ; python_full_version < '3.10'",
146+
"numpy==2.2.6 ; python_full_version == '3.10.*'",
147+
"numpy==2.3.2 ; python_full_version >= '3.11'",
148+
"packaging==24.2",
149+
"pillow==11.3.0",
150+
"pyparsing==3.2.3",
151+
"python-dateutil==2.9.0.post0",
152+
"six==1.17.0",
153+
"typing-extensions==4.12.2",
154+
"zipp==3.23.0 ; python_full_version < '3.10'",
155+
]
103156

104157
[dependency-groups]
105158
dev = [

0 commit comments

Comments
 (0)