Skip to content

Commit

Permalink
chore(crypto): Update version of ic-ed25519 to 0.2 (#3946)
Browse files Browse the repository at this point in the history
Update the changelog in preparation for releasing to crates.io

---------

Co-authored-by: IDX GitHub Automation <infra+github-automation@dfinity.org>
  • Loading branch information
randombit and IDX GitHub Automation authored Feb 14, 2025
1 parent 4627f33 commit d054caa
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
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.

2 changes: 1 addition & 1 deletion packages/ic-ed25519/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rust_library(
crate_features = ["rand"],
crate_name = "ic_ed25519",
proc_macro_deps = MACRO_DEPENDENCIES,
version = "0.9.0",
version = "0.2.0",
deps = DEPENDENCIES,
)

Expand Down
13 changes: 12 additions & 1 deletion packages/ic-ed25519/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.2.0] - 2025-02-14

### Added

- Added a new feature `rand` which controls if `ic-ed25519` will depend on the `rand`
crate. Key generation and batch verification are not supported if `rand` support is
disabled. Disabling this feature is useful anytime a dependency on `rand` is not
desirable, particularly when building for the `wasm32-unknown-unknown` target used for
the Internet Computer, due to the fact that a dependency of `rand`, namely `getrandom`,
refuses to compile for this target.

## [0.1.0] - 2025-02-07

Initial release.
Initial release.
2 changes: 1 addition & 1 deletion packages/ic-ed25519/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-ed25519"
version = "0.1.0"
version = "0.2.0"
description = "A package created for the Internet Computer Protocol for creating and verifying Ed25519 signatures."
license = "Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit d054caa

Please sign in to comment.