Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rambo committed Feb 8, 2024
1 parent 812abd7 commit d16f2cf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.0
current_version = 1.4.0
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "multikeyjwt"
version = "1.3.0"
version = "1.4.0"
description = "Verify JWTs with multiple public keys, FastAPI middleware for auth"
authors = ["Eero af Heurlin <eero.afheurlin@iki.fi>"]
homepage = "https://github.com/pvarki/python-multikeyjwt/"
Expand Down
2 changes: 1 addition & 1 deletion src/multikeyjwt/__init__.py
@@ -1,5 +1,5 @@
""" Verify JWTs with multiple public keys, FastAPI middleware for auth """
__version__ = "1.3.0" # NOTE Use `bump2version --config-file patch` to bump versions correctly
__version__ = "1.4.0" # NOTE Use `bump2version --config-file patch` to bump versions correctly

from .jwt.issuer import Issuer
from .jwt.verifier import Verifier
Expand Down
2 changes: 1 addition & 1 deletion tests/test_multikeyjwt.py
Expand Up @@ -4,4 +4,4 @@

def test_version() -> None:
"""Make sure version matches expected"""
assert __version__ == "1.3.0"
assert __version__ == "1.4.0"

0 comments on commit d16f2cf

Please sign in to comment.