REL Release 1.0.0

This commit is contained in:
Renato Alves
2021-04-16 00:23:12 +02:00
parent 685c3aa263
commit 45b7218c10
2 changed files with 10 additions and 3 deletions

View File

@@ -1,7 +1,14 @@
#### Changelog
##### 1.0.0-rc1+git
-
##### 1.0.0+git
-
##### 1.0.0
- Improve detection of NSS in Windows and MacOS
- Skip decoding failures or malformed records
- UTF-8 is now required for all interaction
- Python UTF-8 mode is recommended on Windows
- Tests are now automated on Linux, MacOS and Windows
##### 1.0.0-rc1
- Output formats have been internally refactored for easier extensibility.

View File

@@ -73,7 +73,7 @@ def get_version() -> str:
return p.stdout.strip()
__version_info__ = (1, 0, 0, "-rc1+git")
__version_info__ = (1, 0, 0)
__version__: str = get_version()