diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ab0f4a6..e7c91cd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.1.1 commit = True tag = True message = Release {new_version} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 68981f1..aa38af7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.6.0 hooks: - id: trailing-whitespace exclude: '^(.bumpversion.cfg)$' @@ -16,17 +16,17 @@ repos: additional_dependencies: - types_requests - repo: https://github.com/seantis/pre-commit-hooks - rev: v1.0.1 + rev: v1.1.0 hooks: - id: nocheckin exclude: .pre-commit-config.yaml - repo: https://github.com/PyCQA/flake8 - rev: 5.0.4 + rev: 7.1.1 hooks: - id: flake8 files: '^(sedate/.*|tests/.*)\.py$' - repo: https://github.com/pre-commit/mirrors-mypy - rev: v0.971 + rev: v1.11.1 hooks: - id: mypy files: '^sedate/.*\.py$' diff --git a/HISTORY.rst b/HISTORY.rst index 48fd6fe..eaa8d63 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ Changelog --------- +1.1.1 (2024-08-13) +~~~~~~~~~~~~~~~~~~~ + +- No changes. For testing new release workflow. + [Daverball] + 1.1.0 (2024-06-11) ~~~~~~~~~~~~~~~~~~~ diff --git a/sedate/__init__.py b/sedate/__init__.py index bba114c..816ee25 100644 --- a/sedate/__init__.py +++ b/sedate/__init__.py @@ -36,7 +36,7 @@ from .types import TzInfo from .types import TzInfoOrName -__version__ = '1.1.0' +__version__ = '1.1.1' mindatetime = pytz.utc.localize(datetime.min) maxdatetime = pytz.utc.localize(datetime.max)