Skip to content

Commit 9bdc7b6

Browse files
committed
setup to release new version
1 parent aa111a3 commit 9bdc7b6

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ jobs:
6565
uses: 'marvinpinto/action-automatic-releases@latest'
6666
with:
6767
repo_token: ${{ secrets.RELEASE_TOKEN }}
68-
automatic_release_tag: v1.2.0
68+
automatic_release_tag: v1.2.1
6969
prerelease: false
70-
title: v1.2.0
70+
title: v1.2.1
7171
files: |
7272
dist/*
7373

dist/AES-Python-1.1.6.tar.gz

-9.76 KB
Binary file not shown.

dist/AES-Python-1.2.1.tar.gz

9.96 KB
Binary file not shown.
-10.8 KB
Binary file not shown.
11 KB
Binary file not shown.

src/AES_Python.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: AES-Python
3-
Version: 1.2.0
3+
Version: 1.2.1
44
Summary: AES (Advanced Encryption Standard) implementation in Python-3
55
Author-email: Gabriel Lindeblad <Gabriel.Lindeblad@icloud.com>
66
Project-URL: Homepage, https://github.com/Glindeb/AES-Python

src/PyAES/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
__copyright__ = 'Copyright 2022, Gabriel Lindeblad'
2020
__credits__ = [""]
2121
__license__ = 'MIT'
22-
__version__ = '1.2.0'
22+
__version__ = '1.2.1'
2323
__maintainer__ = 'Gabriel Lindeblad'
2424
__email__ = 'Gabriel.lindeblad@icloud.com'
2525
__status__ = 'Development'

tests/Analyze.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
def main(i):
66
key = "2b7e151628aed2a6abf7158809cf4f3c"
77
iv = "000102030405060708090a0b0c0d0e0f"
8-
running_mode = "PCBC"
9-
file_path = r"C:\Users\Gabriel\Documents\GitHub\AES-Python\tmp\test_files\data.txt"
8+
running_mode = "ECB"
9+
file_path = r"/Users/gabriellindeblad/Documents/GitHub/AES-Python/tmp/test_files/sword_fifth_bakground_light_1.jpg"
1010

1111
if i == "enc":
12-
encrypt(key, file_path, running_mode, iv)
12+
encrypt(key, file_path, running_mode)
1313
else:
1414
file_path += ".enc"
15-
decrypt(key, file_path, running_mode, iv)
15+
decrypt(key, file_path, running_mode)
1616

1717

1818
if __name__ == '__main__':

0 commit comments

Comments
 (0)