Skip to content

Commit

Permalink
🔖 Release Version 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
xFGhoul committed Jan 25, 2023
1 parent b173d6c commit 5c22a17
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 9 deletions.
18 changes: 15 additions & 3 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ So It's been kind of a while since we released a new update, I had some pretty b

- 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

## 1.5 - 2022-01-05
## 1.5 - 2023-01-05

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.

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

- **Refactoring and Misc Improvements**

## 1.6 - 2022-01-07
## 1.6 - 2023-01-07

Minor bump for `setup.py` bug that didn't allow importing.
Minor bump for `setup.py` bug that didn't allow importing.

## 1.7 - 2023-01-25

### Major Changes

- **Live Documentation** - Docs are now public at http://ghouldev.me/PythonProtector

- **Event System** - Event System, see docs for more info

### Minor Changes

- **Miscellaneous Changes/Refactoring** - For A Better User Experience
18 changes: 15 additions & 3 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ So It's been kind of a while since we released a new update, I had some pretty b

- 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

## 1.5 - 2022-01-05
## 1.5 - 2023-01-05

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.

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

- **Refactoring and Misc Improvements**

## 1.6 - 2022-01-07
## 1.6 - 2023-01-07

Minor bump for `setup.py` bug that didn't allow importing.
Minor bump for `setup.py` bug that didn't allow importing.

## 1.7 - 2023-01-25

### Major Changes

- **Live Documentation** - Docs are now public at http://ghouldev.me/PythonProtector

- **Event System** - Event System, see docs for more info

### Minor Changes

- **Miscellaneous Changes/Refactoring** - For A Better User Experience
2 changes: 1 addition & 1 deletion pyprotector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Made With ❤️ By Ghoul & Marci
"""

__version__ = "1.6"
__version__ = "1.7"

from .protector import PythonProtector

Expand Down
2 changes: 1 addition & 1 deletion pyprotector/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def encrypted_formatter(record):

@final
class ProtectorInfo:
VERSION: Final[str] = "1.6"
VERSION: Final[str] = "1.7"
ROOT_PATH: str = os.path.abspath(os.curdir)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
setup(
name="PythonProtector",
packages=["pyprotector", "pyprotector.utils", "pyprotector.modules"],
version="1.6",
version="1.7",
license="MIT",
description="Library for protecting your python files",
author="Ghoul & Marci",
Expand Down

0 comments on commit 5c22a17

Please sign in to comment.