Skip to content

Commit

Permalink
[FIX] Bump version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wbenbihi committed Mar 7, 2024
1 parent 8037cd8 commit 05c696e
Show file tree
Hide file tree
Showing 8 changed files with 473 additions and 109 deletions.
496 changes: 465 additions & 31 deletions CHANGELOG.md

Large diffs are not rendered by default.

Empty file added docs/badges/.empty
Empty file.
1 change: 0 additions & 1 deletion docs/badges/coverage.svg

This file was deleted.

1 change: 0 additions & 1 deletion docs/badges/flake8.svg

This file was deleted.

55 changes: 0 additions & 55 deletions docs/badges/interrogate.svg

This file was deleted.

1 change: 0 additions & 1 deletion docs/badges/pytest.svg

This file was deleted.

2 changes: 1 addition & 1 deletion fastjwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from fastjwt.fastjwt import FastJWT
from fastjwt.dependencies import FastJWTDeps

__version__ = "0.3.1"
__version__ = "0.4.0"
26 changes: 7 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fastjwt"
version = "0.3.1"
version = "0.4.0"
description = "FastAPI Plugin for reusable JWT Authentication Management"
authors = ["Walid BENBIHI <contact@ocarinow.com>"]
homepage = "https://ocarinow.github.io/fastjwt/"
Expand Down Expand Up @@ -101,7 +101,12 @@ build_command = "pip install poetry && poetry build"
version_toml = ["pyproject.toml:tool.poetry.version"]
version_variables = ["fastjwt/__init__.py:__version__"]
commit_parser = "ci.commitparser:OcarinowCommitParser"
assets = ["docs/badges/*"]
assets = [
"docs/badges/coverage.svg",
"docs/badges/flake8.svg",
"docs/badges/interrogate.svg",
"docs/badges/pytest.svg",
]

[tool.semantic_release.commit_parser_options]
minor_tags = ["[FEAT]"]
Expand All @@ -114,20 +119,3 @@ match = "(main|master|release|stable|latest)"
match = "(staging|dev|bump.major)"
prerelease = true
prerelease_token = "rc"

# [tool.semantic_release]
# version_variable = ["fastjwt/__init__.py:__version__"]
# version_toml = "pyproject.toml:tool.poetry.version"
# version_source = "commit"
# prerelease_tag = "rc"
# tag_commit = true
# branch = "main"
# upload_to_repository = false
# upload_to_release = true
# commit_parser = "ci.commit_parser.ocarinow_commit_parser"
# build_command = "pip install poetry && poetry build"
# changelog_file = "CHANGELOG.md"
# changelog_placeholder = "<!--next-version-placeholder-->"
# REPOSITORY_USERNAME = "__token__"
# pre_commit_command = "bash ci/pre_commit_command.sh"
# include_additional_files = "reports/flake8-badge.svg,reports/tests-badge.svg,reports/coverage-badge.svg,reports/docstr-badge.svg"

0 comments on commit 05c696e

Please sign in to comment.