Skip to content

Commit

Permalink
Update to v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed Oct 8, 2021
1 parent 6f6b680 commit 998c92b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
url="https://github.com/starkbank/ecdsa-python.git",
author="Stark Bank",
author_email="[email protected]",
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"
)


Expand Down

0 comments on commit 998c92b

Please sign in to comment.