Skip to content

Commit 861d165

Browse files
committed
v1.3.12.2
--------- 2022-06-01: update to github actions checkout@v3 and setup-python@v3
1 parent 093dfbc commit 861d165

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

.docs/README_template.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wrapt_timeout_decorator
22
=======================
33

44

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

77

88
.. include:: ./badges.rst

.github/workflows/python-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,10 @@ jobs:
182182

183183
steps:
184184
# see : https://github.com/actions/checkout
185-
- uses: actions/checkout@v2
185+
- uses: actions/checkout@v3
186186

187187
- name: Setting up Python ${{ matrix.python-version }}
188-
uses: actions/setup-python@v2
188+
uses: actions/setup-python@v3
189189
with:
190190
python-version: ${{ matrix.python-version }}
191191

CHANGES.rst

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
v1.3.12.2
5+
---------
6+
2022-06-01: update to github actions checkout@v3 and setup-python@v3
7+
48
v1.3.12
59
--------
610
2022-05-23: update requirements.txt

README.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ wrapt_timeout_decorator
22
=======================
33

44

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

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

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

854+
v1.3.12.2
855+
---------
856+
2022-06-01: update to github actions checkout@v3 and setup-python@v3
857+
854858
v1.3.12
855859
--------
856860
2022-05-23: update requirements.txt

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def get_line_data(line: str) -> str:
8484

8585
setup_kwargs: Dict[str, Any] = dict()
8686
setup_kwargs["name"] = "wrapt_timeout_decorator"
87-
setup_kwargs["version"] = "v1.3.12"
87+
setup_kwargs["version"] = "v1.3.12.2"
8888
setup_kwargs["url"] = "https://github.com/bitranox/wrapt_timeout_decorator"
8989
setup_kwargs["packages"] = find_packages()
9090
setup_kwargs["package_data"] = {"wrapt_timeout_decorator": ["py.typed", "*.pyi", "__init__.pyi"]}

wrapt_timeout_decorator/__init__conf__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "wrapt_timeout_decorator"
44
title = "The better timout decorator"
5-
version = "v1.3.12"
5+
version = "v1.3.12.2"
66
url = "https://github.com/bitranox/wrapt_timeout_decorator"
77
author = "Robert Nowotny"
88
author_email = "[email protected]"
@@ -17,7 +17,7 @@ def print_info() -> None:
1717
1818
The better timout decorator
1919
20-
Version : v1.3.12
20+
Version : v1.3.12.2
2121
Url : https://github.com/bitranox/wrapt_timeout_decorator
2222
Author : Robert Nowotny
2323
Email : [email protected]"""

0 commit comments

Comments
 (0)