Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions k256/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ 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 [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.13.0 (2023-03-02)
### Added
- `FieldBytesEncoding` trait impls ([#732])
- Fast `invert_vartime` using Stein's algorithm ([#743])
- `serde` support for `schnorr` types ([#748])

### Changed
- `AffineCoordinates` trait ([#734])
- Bump `elliptic-curve` dependency to v0.13 ([#770])
- Bump `ecdsa` to v0.16 ([#770])

[#732]: https://github.com/RustCrypto/elliptic-curves/pull/732
[#734]: https://github.com/RustCrypto/elliptic-curves/pull/734
[#743]: https://github.com/RustCrypto/elliptic-curves/pull/743
[#748]: https://github.com/RustCrypto/elliptic-curves/pull/748
[#770]: https://github.com/RustCrypto/elliptic-curves/pull/770

## 0.12.0 (2022-01-16)
### Added
- `alloc` feature ([#670])
Expand Down
2 changes: 1 addition & 1 deletion k256/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k256"
version = "0.13.0-pre"
version = "0.13.0"
description = """
secp256k1 elliptic curve library written in pure Rust with support for ECDSA
signing/verification/public-key recovery, Taproot Schnorr signatures,
Expand Down