Skip to content

Commit b9cfe2d

Browse files
authoredMay 6, 2024
Release/v3.0.0a0 (#685)
* prepare prerelease * Bump version: 2.5.5.post1 → 3.0.0a0
1 parent 0de6ace commit b9cfe2d

File tree

7 files changed

+60
-6
lines changed

7 files changed

+60
-6
lines changed
 

‎CHANGES.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [3.0.0a0] - 2024-05-06
44

55
### Added
66

@@ -361,7 +361,8 @@
361361

362362
* First PyPi release!
363363

364-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.5.post1..main>
364+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.0a0..main>
365+
[3.0.0a0]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.5.post1..3.0.0a0>
365366
[2.5.5.post1]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.5..2.5.5.post1>
366367
[2.5.5]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.4..2.5.5>
367368
[2.5.4]: <https://github.com/stac-utils/stac-fastapi/compare/2.5.3..2.5.4>

‎RELEASING.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This is a checklist for releasing a new version of **stac-fastapi**.
55
1. Determine the next version. We currently do not have published versioning guidelines, but there is some text on the subject here: <https://github.com/radiantearth/stac-spec/discussions/1184>.
66
2. Create a release branch named `release/vX.Y.Z`, where `X.Y.Z` is the new version.
77
3. Search and replace all instances of the current version number with the new version. As of this writing, there's 3 different `version.py` files, and one `VERSION` file, in the repo.
8+
9+
Note: You can use [`bump-my-version`](https://github.com/callowayproject/bump-my-version) CLI
10+
```
11+
bump-my-version bump --new-version 3.1.0
12+
```
13+
814
4. Update [CHANGES.md](./CHANGES.md) for the new version. Add the appropriate header, and update the links at the bottom of the file.
915
5. Audit CHANGES.md for completeness and accuracy. Also, ensure that the changes in this version are appropriate for the version number change (i.e. if you're making breaking changes, you should be increasing the `MAJOR` version number).
1016
6. (optional) If you have permissions, run `scripts/publish --test` to test your PyPI publish. If successful, the published packages will be available on <http://test.pypy.org>.

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.5.post1
1+
3.0.0a0

‎pyproject.toml

+47
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,50 @@ section-order = ["future", "standard-library", "third-party", "first-party", "lo
2222

2323
[tool.ruff.format]
2424
quote-style = "double"
25+
26+
[tool.bumpversion]
27+
current_version = "3.0.0a0"
28+
parse = """(?x)
29+
(?P<major>\\d+)\\.
30+
(?P<minor>\\d+)\\.
31+
(?P<patch>\\d+)
32+
(?:
33+
(?P<pre_l>a|b|rc) # pre-release label
34+
(?P<pre_n>\\d+) # pre-release version number
35+
)? # pre-release section is optional
36+
(?:
37+
\\.post
38+
(?P<post_n>\\d+) # post-release version number
39+
)? # post-release section is optional
40+
"""
41+
serialize = [
42+
"{major}.{minor}.{patch}.post{post_n}",
43+
"{major}.{minor}.{patch}{pre_l}{pre_n}",
44+
"{major}.{minor}.{patch}",
45+
]
46+
47+
search = "{current_version}"
48+
replace = "{new_version}"
49+
regex = false
50+
tag = false
51+
commit = true
52+
53+
[[tool.bumpversion.files]]
54+
filename = "VERSION"
55+
search = "{current_version}"
56+
replace = "{new_version}"
57+
58+
[[tool.bumpversion.files]]
59+
filename = "stac_fastapi/api/stac_fastapi/api/version.py"
60+
search = '__version__ = "{current_version}"'
61+
replace = '__version__ = "{new_version}"'
62+
63+
[[tool.bumpversion.files]]
64+
filename = "stac_fastapi/extensions/stac_fastapi/extensions/version.py"
65+
search = '__version__ = "{current_version}"'
66+
replace = '__version__ = "{new_version}"'
67+
68+
[[tool.bumpversion.files]]
69+
filename = "stac_fastapi/types/stac_fastapi/types/version.py"
70+
search = '__version__ = "{current_version}"'
71+
replace = '__version__ = "{new_version}"'
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Library version."""
2-
__version__ = "2.5.5.post1"
2+
__version__ = "3.0.0a0"
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Library version."""
2-
__version__ = "2.5.5.post1"
2+
__version__ = "3.0.0a0"
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Library version."""
2-
__version__ = "2.5.5.post1"
2+
__version__ = "3.0.0a0"

0 commit comments

Comments
 (0)