Skip to content

Commit 7fd9402

Browse files
committed
Adjust versioning mechanics
1 parent 227b6c7 commit 7fd9402

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ After which you can add these changes and commit again. Note that failing pre-co
5656

5757
Releases to PyPi are handled via Github Actions and GitHub tags. Once changes have been merged to master:
5858

59-
1. Update the version in mapbox_tilesets/__init__.py
59+
1. Update the version in `pyproject.toml`
6060
2. Update the changelog
6161
3. Commit changes to **your branch**. For example `git commit -am '0.2.0' && git push origin HEAD`
6262
4. Get a review and merge your changes to master.

mapbox_tilesets/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
try:
66
__version__ = _pkg_version("mapbox-tilesets")
77
except PackageNotFoundError:
8-
__version__ = "0.0.0"
8+
# Fallback for development mode
9+
__version__ = "0.0.0.dev"

0 commit comments

Comments
 (0)