Просмотр исходного кода

Remember to bump version number in README

Ian Goldberg 3 недель назад
Родитель
Сommit
648fa92789
8 измененных файлов с 22 добавлено и 16 удалено
  1. 6 0
      CHANGELOG.md
  2. 6 6
      Cargo.lock
  3. 3 3
      Cargo.toml
  4. 1 1
      README.md
  5. 1 1
      cmz-core/Cargo.lock
  6. 1 1
      cmz-core/Cargo.toml
  7. 2 2
      cmz-derive/Cargo.lock
  8. 2 2
      cmz-derive/Cargo.toml

+ 6 - 0
CHANGELOG.md

@@ -39,6 +39,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
   constant time, and also in some cases slower than the regular
   multiplication (at least with Ristretto).
 
+## [0.2.1] - 2026-03-26
+
+### Fixes
+
+- Remembered to bump version number in README
 
 [0.1.0]: https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz/src/0.1.0
 [0.2.0]: https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz/src/0.2.0
+[0.2.1]: https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz/src/0.2.1

+ 6 - 6
Cargo.lock

@@ -366,7 +366,7 @@ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
 
 [[package]]
 name = "cmz"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "bincode",
  "chrono",
@@ -388,7 +388,7 @@ dependencies = [
 
 [[package]]
 name = "cmz-core"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "clap",
  "darling",
@@ -400,7 +400,7 @@ dependencies = [
 
 [[package]]
 name = "cmz-derive"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "cmz-core",
  "darling",
@@ -1488,7 +1488,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
 
 [[package]]
 name = "sigma-compiler"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "group",
  "rand 0.8.5",
@@ -1499,7 +1499,7 @@ dependencies = [
 
 [[package]]
 name = "sigma-compiler-core"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "clap",
  "prettyplease",
@@ -1510,7 +1510,7 @@ dependencies = [
 
 [[package]]
 name = "sigma-compiler-derive"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "sigma-compiler-core",
  "syn 2.0.104",

+ 3 - 3
Cargo.toml

@@ -1,13 +1,13 @@
 [package]
 name = "cmz"
-version = "0.2.0"
+version = "0.2.1"
 edition = "2021"
 license = "MIT"
 repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz"
 description = "A crate to automatically create protocols that use CMZ14 or µCMZ credentials, by specifying an extremely compact description of the protocol."
 
 [dependencies]
-cmz-derive = "=0.2.0"
+cmz-derive = "=0.2.1"
 ff = "0.13"
 generic_static = "0.2"
 group = "0.13"
@@ -17,7 +17,7 @@ rand = "0.8.5"
 serde = { version = "1", features = [ "derive" ] }
 serde_bytes = "0.11"
 serde_with = "3"
-sigma-compiler = "0.2.0"
+sigma-compiler = "0.2.1"
 thiserror = "2"
 
 [dev-dependencies]

+ 1 - 1
README.md

@@ -1,5 +1,5 @@
 `cmz` by Ian Goldberg, iang@uwaterloo.ca  
-Version 0.1.0, 2025-10-10
+Version 0.2.1, 2026-03-26
 
 This crate is centred around the concept of _credentials_.  A credential
 contains:

+ 1 - 1
cmz-core/Cargo.lock

@@ -94,7 +94,7 @@ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
 
 [[package]]
 name = "cmz-core"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "clap",
  "darling",

+ 1 - 1
cmz-core/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "cmz-core"
-version = "0.2.0"
+version = "0.2.1"
 edition = "2021"
 license = "MIT"
 repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz"

+ 2 - 2
cmz-derive/Cargo.lock

@@ -94,7 +94,7 @@ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
 
 [[package]]
 name = "cmz-core"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "clap",
  "darling",
@@ -106,7 +106,7 @@ dependencies = [
 
 [[package]]
 name = "cmz-derive"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "cmz-core",
  "darling",

+ 2 - 2
cmz-derive/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "cmz-derive"
-version = "0.2.0"
+version = "0.2.1"
 edition = "2021"
 license = "MIT"
 repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/cmz"
@@ -10,7 +10,7 @@ description = "Derive macros for the cmz crate"
 proc-macro = true
 
 [dependencies]
-cmz-core = "=0.2.0"
+cmz-core = "=0.2.1"
 syn = { version = "2.0", features = ["extra-traits", "visit-mut"] }
 quote = "1.0"
 darling = "0.20"