Skip to content

Commit aa43bd6

Browse files
authored
Merge pull request #27 from larsrollik/ft/version2
release version
2 parents cabe41d + dc4d08d commit aa43bd6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.8.dev0
2+
current_version = 0.2.9
33
commit = True
44
tag = False
55
tag_name = v{new_version}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
# templatepy
3838
Template repo for python repositories & PyPi integration
3939
---
40-
**Version: "0.2.8.dev0"**
40+
**Version: "0.2.9"**
4141

4242

4343
## Usage

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "templatepy"
7-
version = "0.2.8.dev0"
7+
version = "0.2.9"
88
authors = [
99
{ name = "Lars B. Rollik", email = "L.B.Rollik@protonmail.com" }
1010
]
@@ -74,8 +74,8 @@ select = [
7474
"YTT", # check for YAML issues
7575
"SIM", # detect unnecessary comprehensions, loops, etc.
7676
"PTH", # checks for pathlib best practices
77-
"TCH",
78-
"PYI",
77+
"TCH", # checks for typing best practices
78+
"PYI", # checks for pyi files
7979
]
8080
ignore = []
8181

templatepy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
try:
66
__version__ = version("subject_weight_db")
77
except PackageNotFoundError:
8-
__version__ = "0.2.8.dev0"
8+
__version__ = "0.2.9"
99

1010

1111
def run():

0 commit comments

Comments
 (0)