Skip to content

Commit 5c22a17

Browse files
committed
πŸ”– Release Version 1.7
1 parent b173d6c commit 5c22a17

5 files changed

Lines changed: 33 additions & 9 deletions

File tree

β€ŽHISTORY.mdβ€Ž

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ So It's been kind of a while since we released a new update, I had some pretty b
1212

1313
- Overall Improvement/Refactoring - This update didn't bring everything me and marci are planning for, but this is just a couple, in the update I made to sure to cover some edge cases so you guys don't get confused
1414

15-
## 1.5 - 2022-01-05
15+
## 1.5 - 2023-01-05
1616

1717
I know this is a pretty quick release, and the jump from `1.1` to `1.5` but I felt it was only necessary with the amount of changes made.
1818

@@ -30,6 +30,18 @@ I know this is a pretty quick release, and the jump from `1.1` to `1.5` but I fe
3030

3131
- **Refactoring and Misc Improvements**
3232

33-
## 1.6 - 2022-01-07
33+
## 1.6 - 2023-01-07
3434

35-
Minor bump for `setup.py` bug that didn't allow importing.
35+
Minor bump for `setup.py` bug that didn't allow importing.
36+
37+
## 1.7 - 2023-01-25
38+
39+
### Major Changes
40+
41+
- **Live Documentation** - Docs are now public at http://ghouldev.me/PythonProtector
42+
43+
- **Event System** - Event System, see docs for more info
44+
45+
### Minor Changes
46+
47+
- **Miscellaneous Changes/Refactoring** - For A Better User Experience

β€Ždocs/release.mdβ€Ž

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ So It's been kind of a while since we released a new update, I had some pretty b
1212

1313
- Overall Improvement/Refactoring - This update didn't bring everything me and marci are planning for, but this is just a couple, in the update I made to sure to cover some edge cases so you guys don't get confused
1414

15-
## 1.5 - 2022-01-05
15+
## 1.5 - 2023-01-05
1616

1717
I know this is a pretty quick release, and the jump from `1.1` to `1.5` but I felt it was only necessary with the amount of changes made.
1818

@@ -30,6 +30,18 @@ I know this is a pretty quick release, and the jump from `1.1` to `1.5` but I fe
3030

3131
- **Refactoring and Misc Improvements**
3232

33-
## 1.6 - 2022-01-07
33+
## 1.6 - 2023-01-07
3434

35-
Minor bump for `setup.py` bug that didn't allow importing.
35+
Minor bump for `setup.py` bug that didn't allow importing.
36+
37+
## 1.7 - 2023-01-25
38+
39+
### Major Changes
40+
41+
- **Live Documentation** - Docs are now public at http://ghouldev.me/PythonProtector
42+
43+
- **Event System** - Event System, see docs for more info
44+
45+
### Minor Changes
46+
47+
- **Miscellaneous Changes/Refactoring** - For A Better User Experience

β€Žpyprotector/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Made With ❀️ By Ghoul & Marci
1010
"""
1111

12-
__version__ = "1.6"
12+
__version__ = "1.7"
1313

1414
from .protector import PythonProtector
1515

β€Žpyprotector/constants.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def encrypted_formatter(record):
5454

5555
@final
5656
class ProtectorInfo:
57-
VERSION: Final[str] = "1.6"
57+
VERSION: Final[str] = "1.7"
5858
ROOT_PATH: str = os.path.abspath(os.curdir)
5959

6060

β€Žsetup.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
setup(
2121
name="PythonProtector",
2222
packages=["pyprotector", "pyprotector.utils", "pyprotector.modules"],
23-
version="1.6",
23+
version="1.7",
2424
license="MIT",
2525
description="Library for protecting your python files",
2626
author="Ghoul & Marci",

0 commit comments

Comments
Β (0)