diff --git a/CHANGELOG.md b/CHANGELOG.md index ee6271c..00fd23c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.2](https://github.com/near/near-account-id-rs/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) - 2023-11-03 + +### Other +- `AccountType`, add `EthImplicitAccount` ([#14](https://github.com/near/near-account-id-rs/pull/14)) + ## 1.0.0-alpha.1 - 2023-10-24 near-account-id was extracted from [nearcore](https://github.com/near/nearcore) as of 2023-08-01, and extended with the following features to reach stable 1.0.0 release. diff --git a/Cargo.lock b/Cargo.lock index 96f5a43..3ad1c08 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -259,7 +259,7 @@ dependencies = [ [[package]] name = "near-account-id" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "anyhow", "arbitrary", diff --git a/Cargo.toml b/Cargo.toml index 783aace..9fe57db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "near-account-id" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" authors = ["Near Inc "] edition = "2021" description = "This crate contains the Account ID primitive and its validation facilities"