From 998c92b59db5d2372f62d49f67805d8875d8b299 Mon Sep 17 00:00:00 2001 From: Caio Dottori Date: Fri, 8 Oct 2021 12:11:02 -0300 Subject: [PATCH] Update to v2.0.0 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ setup.py | 4 ++-- 2 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b8e43d9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,34 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to the following versioning pattern: + +Given a version number MAJOR.MINOR.PATCH, increment: + +- MAJOR version when **breaking changes** are introduced; +- MINOR version when **backwards compatible changes** are introduced; +- PATCH version when backwards compatible bug **fixes** are implemented. + + +## [Unreleased] + +## [2.0.0] - 2021-10-08 +### Added +- root imports: from ellipticcurve import PrivateKey, PublicKey, Signature, Ecdsa, File +### Changed +- return type of toDer() methods from str to bytes +- internal DER parsing structure for better maintainability, translatability and usability + +## [1.1.1] - 2021-06-06 +### Fixed +- unstable results on certain curves due to missing modulo operator on signature verification + +## [1.1.0] - 2020-09-04 +### Added +- recoveryId generation and encoding in Signatures + +## [1.0.0] - 2020-04-13 +### Added +- first official version diff --git a/setup.py b/setup.py index 536c7f1..ccdd8a1 100644 --- a/setup.py +++ b/setup.py @@ -17,8 +17,8 @@ url="https://github.com/starkbank/ecdsa-python.git", author="Stark Bank", author_email="developers@starkbank.com", - keywords=["ecdsa", "elliptic curve", "elliptic", "curve", "stark bank", "starkbank", "cryptograph"], - version="1.1.1" + keywords=["ecdsa", "elliptic curve", "elliptic", "curve", "stark bank", "starkbank", "cryptograph", "secp256k1", "prime256v1"], + version="2.0.0" )