Skip to content

Commit 110594d

Browse files
authored
Merge pull request #2 from OSSMafia/mnick/chores
feat: chores
2 parents 79f830c + 95b22de commit 110594d

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[bumpversion]
2-
current_version = 0.0.1
2+
current_version = 0.0.2
33
commit = True
44
tag = True
55

66
[bumpversion:file:pyproject.toml]
77
search = version = "{current_version}"
8-
replace = version = "{new_version}"
8+
replace = version = "{new_version}"

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__pycache__/
33
*.py[cod]
44
*$py.class
5-
5+
*.pyc
66
# C extensions
77
*.so
88

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,13 @@ format:
22
bash ./scripts/formatter.sh
33

44
lint:
5-
bash ./scripts/linter.sh
5+
bash ./scripts/linter.sh
6+
7+
version_patch:
8+
bash ./scripts/version_patch.sh
9+
10+
version_minor:
11+
bash ./scripts/version_minor.sh
12+
13+
version_major:
14+
bash ./scripts/version_major.sh

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fastapi_clerk_auth"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
description = "FastAPI Auth Middleware for [Clerk](https://clerk.com)"
55
readme = "README.md"
66
requires-python = ">=3.9"

0 commit comments

Comments
 (0)