Skip to content

Commit

Permalink
"Bump a new version: 0.3.2 → 0.3.3"
Browse files Browse the repository at this point in the history
  • Loading branch information
marazmiki committed Jul 31, 2022
1 parent fa6ecdb commit e7aa321
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.2
current_version = 0.3.3
commit = True
tag = True
message = "Bump a new version: {current_version} → {new_version}"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -2,7 +2,7 @@
copyright = "2021, Mikhail Porokhovnichenko <marazmiki@gmail.com>"
author = 'Mikhail Porokhovnichenko <marazmiki@gmail.com>'

release = "0.3.2"
release = "0.3.3"
extensions = ["sphinx.ext.autodoc"]
templates_path = ["_templates"]
source_suffix = ".rst"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "s3-parse-url"
version = "0.3.2"
version = "0.3.3"
description = "A small tool to parse URLs for S3 compatible storage services"
license = "MIT"
readme = "README.rst"
Expand Down
2 changes: 1 addition & 1 deletion src/s3_parse_url/__init__.py
Expand Up @@ -4,7 +4,7 @@
from s3_parse_url.exceptions import UnsupportedStorage
from s3_parse_url.storages import SUPPORTED_STORAGES

__version__ = "0.3.2"
__version__ = "0.3.3"
__all__ = ["parse_s3_dsn", "parse_s3_url", "UnsupportedStorage"]


Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.3.2"
assert __version__ == "0.3.3"

0 comments on commit e7aa321

Please sign in to comment.