Skip to content

Commit 998c92b

Browse files
Update to v2.0.0
1 parent 6f6b680 commit 998c92b

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to the following versioning pattern:
7+
8+
Given a version number MAJOR.MINOR.PATCH, increment:
9+
10+
- MAJOR version when **breaking changes** are introduced;
11+
- MINOR version when **backwards compatible changes** are introduced;
12+
- PATCH version when backwards compatible bug **fixes** are implemented.
13+
14+
15+
## [Unreleased]
16+
17+
## [2.0.0] - 2021-10-08
18+
### Added
19+
- root imports: from ellipticcurve import PrivateKey, PublicKey, Signature, Ecdsa, File
20+
### Changed
21+
- return type of toDer() methods from str to bytes
22+
- internal DER parsing structure for better maintainability, translatability and usability
23+
24+
## [1.1.1] - 2021-06-06
25+
### Fixed
26+
- unstable results on certain curves due to missing modulo operator on signature verification
27+
28+
## [1.1.0] - 2020-09-04
29+
### Added
30+
- recoveryId generation and encoding in Signatures
31+
32+
## [1.0.0] - 2020-04-13
33+
### Added
34+
- first official version

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
url="https://github.com/starkbank/ecdsa-python.git",
1818
author="Stark Bank",
1919
author_email="[email protected]",
20-
keywords=["ecdsa", "elliptic curve", "elliptic", "curve", "stark bank", "starkbank", "cryptograph"],
21-
version="1.1.1"
20+
keywords=["ecdsa", "elliptic curve", "elliptic", "curve", "stark bank", "starkbank", "cryptograph", "secp256k1", "prime256v1"],
21+
version="2.0.0"
2222
)
2323

2424

0 commit comments

Comments
 (0)