diff options
| -rw-r--r-- | CHANGELOG.md | 9 | ||||
| -rw-r--r-- | setup.py | 5 | ||||
| -rw-r--r-- | src/otp2289/__init__.py | 2 |
3 files changed, 15 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4288634..17b7d91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
| @@ -1,5 +1,14 @@ | |||
| 1 | # Changelog | 1 | # Changelog |
| 2 | 2 | ||
| 3 | ## [1.1.1](https://github.com/blackm0re/pyotp2289/tree/1.1.1) (2022-04-02) | ||
| 4 | |||
| 5 | [Full Changelog](https://github.com/blackm0re/pyotp2289/compare/1.1.0...1.1.1) | ||
| 6 | |||
| 7 | **Changes:** | ||
| 8 | |||
| 9 | - Reintroduce setup.py for better campatibility | ||
| 10 | |||
| 11 | |||
| 3 | ## [1.1.0](https://github.com/blackm0re/pyotp2289/tree/1.1.0) (2022-03-29) | 12 | ## [1.1.0](https://github.com/blackm0re/pyotp2289/tree/1.1.0) (2022-03-29) |
| 4 | 13 | ||
| 5 | [Full Changelog](https://github.com/blackm0re/pyotp2289/compare/1.0.0...1.1.0) | 14 | [Full Changelog](https://github.com/blackm0re/pyotp2289/compare/1.0.0...1.1.0) |
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a5d21d8 --- /dev/null +++ b/setup.py | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # Legacy setup for some build / install systems | ||
| 2 | |||
| 3 | from setuptools import setup | ||
| 4 | |||
| 5 | setup() | ||
diff --git a/src/otp2289/__init__.py b/src/otp2289/__init__.py index 59694a7..af8638c 100644 --- a/src/otp2289/__init__.py +++ b/src/otp2289/__init__.py | |||
| @@ -40,7 +40,7 @@ from .server import ( | |||
| 40 | ) | 40 | ) |
| 41 | 41 | ||
| 42 | __author__ = 'Simeon Simeonov' | 42 | __author__ = 'Simeon Simeonov' |
| 43 | __version__ = '1.1.0' | 43 | __version__ = '1.1.1' |
| 44 | __license__ = 'BSD 2-Clause' | 44 | __license__ = 'BSD 2-Clause' |
| 45 | 45 | ||
| 46 | 46 | ||
