Skip to content

Commit

Permalink
v1.3.12.2
Browse files Browse the repository at this point in the history
---------
2022-06-01: update to github actions checkout@v3 and setup-python@v3
  • Loading branch information
bitranox committed Jun 2, 2022
1 parent 093dfbc commit 861d165
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .docs/README_template.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ wrapt_timeout_decorator
=======================


Version v1.3.12 as of 2022-05-23 see `Changelog`_
Version v1.3.12.2 as of 2022-06-02 see `Changelog`_


.. include:: ./badges.rst
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ jobs:

steps:
# see : https://github.com/actions/checkout
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setting up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

v1.3.12.2
---------
2022-06-01: update to github actions checkout@v3 and setup-python@v3

v1.3.12
--------
2022-05-23: update requirements.txt
Expand Down
6 changes: 5 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ wrapt_timeout_decorator
=======================


Version v1.3.12 as of 2022-05-23 see `Changelog`_
Version v1.3.12.2 as of 2022-06-02 see `Changelog`_

|build_badge| |license| |jupyter| |pypi| |pypi-downloads| |black|

Expand Down Expand Up @@ -851,6 +851,10 @@ This software is licensed under the `MIT license <http://en.wikipedia.org/wiki/M
Changelog
=========

v1.3.12.2
---------
2022-06-01: update to github actions checkout@v3 and setup-python@v3

v1.3.12
--------
2022-05-23: update requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_line_data(line: str) -> str:

setup_kwargs: Dict[str, Any] = dict()
setup_kwargs["name"] = "wrapt_timeout_decorator"
setup_kwargs["version"] = "v1.3.12"
setup_kwargs["version"] = "v1.3.12.2"
setup_kwargs["url"] = "https://github.com/bitranox/wrapt_timeout_decorator"
setup_kwargs["packages"] = find_packages()
setup_kwargs["package_data"] = {"wrapt_timeout_decorator": ["py.typed", "*.pyi", "__init__.pyi"]}
Expand Down
4 changes: 2 additions & 2 deletions wrapt_timeout_decorator/__init__conf__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name = "wrapt_timeout_decorator"
title = "The better timout decorator"
version = "v1.3.12"
version = "v1.3.12.2"
url = "https://github.com/bitranox/wrapt_timeout_decorator"
author = "Robert Nowotny"
author_email = "[email protected]"
Expand All @@ -17,7 +17,7 @@ def print_info() -> None:
The better timout decorator
Version : v1.3.12
Version : v1.3.12.2
Url : https://github.com/bitranox/wrapt_timeout_decorator
Author : Robert Nowotny
Email : [email protected]"""
Expand Down

0 comments on commit 861d165

Please sign in to comment.