Skip to content

Commit 63577da

Browse files
authored
Merge pull request #9 from letsbuilda/shenanigansd/dynamic-version
Load package version dynamically
2 parents 41bcff8 + 14566aa commit 63577da

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/source/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
Changelog
55
=========
66

7+
- :release:`1.3.0 <20th February 2023>`
8+
- :feature:`8` Load version dynamically
9+
710
- :release:`1.2.0 <20th February 2023>`
811
- :feature:`5` Add Sentry.io
912

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[project]
22
name = "api.letsbuilda.dev"
33
description = "Public API for our projects"
4-
version = "1.2.0"
54
authors = [
65
{ name = "Bradley Reynolds", email = "[email protected]" },
76
]
@@ -14,6 +13,7 @@ dependencies = [
1413
"imsosorry==1.2.0",
1514
"sentry-sdk[fastapi]==1.15.0",
1615
]
16+
dynamic = ["version"]
1717

1818
[project.urls]
1919
repository = "https://github.com/letsbuilda/api.letsbuilda.dev/"

src/api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Public API for our projects"""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.3.0"

0 commit comments

Comments
 (0)