fastcrypter 2.3.3__tar.gz → 2.3.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/.github/workflows/pypi.yml +2 -2
  2. {fastcrypter-2.3.3/fastcrypter.egg-info → fastcrypter-2.3.6}/PKG-INFO +1 -1
  3. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/__init__.py +1 -1
  4. {fastcrypter-2.3.3 → fastcrypter-2.3.6/fastcrypter.egg-info}/PKG-INFO +1 -1
  5. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/setup.py +1 -1
  6. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/LICENSE +0 -0
  7. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/MANIFEST.in +0 -0
  8. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/README.md +0 -0
  9. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/examples/algorithm_test.py +0 -0
  10. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/examples/basic_usage.py +0 -0
  11. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/examples/custom_encoding_test.py +0 -0
  12. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/examples/file_test.py +0 -0
  13. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/examples/native_performance_test.py +0 -0
  14. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/advanced_encryptor.py +0 -0
  15. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/algorithms/__init__.py +0 -0
  16. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/algorithms/compression/__init__.py +0 -0
  17. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/algorithms/encryption/__init__.py +0 -0
  18. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/core/__init__.py +0 -0
  19. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/core/compressor.py +0 -0
  20. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/core/custom_encoder.py +0 -0
  21. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/core/encryptor.py +0 -0
  22. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/core/enhanced_compressor.py +0 -0
  23. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/core/key_manager.py +0 -0
  24. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/exceptions.py +0 -0
  25. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/file_encryptor.py +0 -0
  26. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/secure_compressor.py +0 -0
  27. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter/utils/__init__.py +0 -0
  28. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter.egg-info/SOURCES.txt +0 -0
  29. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter.egg-info/dependency_links.txt +0 -0
  30. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter.egg-info/entry_points.txt +0 -0
  31. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter.egg-info/requires.txt +0 -0
  32. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/fastcrypter.egg-info/top_level.txt +0 -0
  33. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/requirements.txt +0 -0
  34. {fastcrypter-2.3.3 → fastcrypter-2.3.6}/setup.cfg +0 -0
@@ -152,5 +152,5 @@ jobs:
152
152
 
153
153
  **Programmer and Owner:** @Pymmdrza
154
154
  files: |
155
- dist/fastCrypter-${{ env.NEW_VERSION }}.tar.gz
156
- dist/fastCrypter-${{ env.NEW_VERSION }}-py3-none-any.whl
155
+ dist/fastcrypter-${{ env.NEW_VERSION }}.tar.gz
156
+ dist/fastcrypter-${{ env.NEW_VERSION }}-py3-none-any.whl
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastcrypter
3
- Version: 2.3.3
3
+ Version: 2.3.6
4
4
  Summary: Professional compression and encryption library with native C/C++ acceleration
5
5
  Home-page: https://github.com/Pymmdrza/fastCrypter
6
6
  Author: Mmdrza
@@ -10,7 +10,7 @@ Version: 2.0.0
10
10
  License: MIT
11
11
  """
12
12
 
13
- __version__ = "2.3.3"
13
+ __version__ = "2.3.6"
14
14
  __author__ = "Mmdrza"
15
15
  __email__ = "pymmdrza@gmail.com"
16
16
  __license__ = "MIT"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastcrypter
3
- Version: 2.3.3
3
+ Version: 2.3.6
4
4
  Summary: Professional compression and encryption library with native C/C++ acceleration
5
5
  Home-page: https://github.com/Pymmdrza/fastCrypter
6
6
  Author: Mmdrza
@@ -23,7 +23,7 @@ if requirements_file.exists():
23
23
 
24
24
  setup(
25
25
  name="fastcrypter",
26
- version="2.3.3",
26
+ version="2.3.6",
27
27
  author="Mmdrza",
28
28
  author_email="pymmdrza@gmail.com",
29
29
  description="Professional compression and encryption library with native C/C++ acceleration",
File without changes
File without changes
File without changes
File without changes