Skip to content

Commit f00799f

Browse files
author
Ian Goldberg
committed
Bump version to 0.1.0 and add initial changelog
1 parent be8adc7 commit f00799f

File tree

10 files changed

+31
-17
lines changed

10 files changed

+31
-17
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.1.0] - 2025-10-10
9+
10+
### Added
11+
12+
- Initial release
13+
14+
[0.1.0]: https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler/src/0.1.0

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sigma-compiler"
3-
version = "0.1.0-rc2"
3+
version = "0.1.0"
44
edition = "2021"
55
license = "MIT"
66
repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler"
@@ -9,7 +9,7 @@ description = "Crate for automatically generating code for sigma zero-knowledge
99
[dependencies]
1010
group = "0.13"
1111
rand = "0.8.5"
12-
sigma-compiler-derive = "0.1.0-rc2"
12+
sigma-compiler-derive = "0.1.0"
1313
sigma-proofs = "0.1.0-sigma"
1414
subtle = "2.6"
1515

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
`sigma-compiler` by Ian Goldberg, [email protected]
2-
Version 0.1.0-rc2, 2025-09-22
2+
Version 0.1.0, 2025-10-10
33

44
This crate provides the `sigma_compiler!` macro as an easy interface
55
to the [`sigma-proofs`](https://crates.io/crates/sigma-proofs) API

sigma-compiler-core/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sigma-compiler-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sigma-compiler-core"
3-
version = "0.1.0-rc2"
3+
version = "0.1.0"
44
edition = "2021"
55
license = "MIT"
66
repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler"

sigma-compiler-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
`sigma-compiler-core` by Ian Goldberg, [email protected]
2-
Version 0.1.0-rc2, 2025-09-22
2+
Version 0.1.0, 2025-10-10
33

44
This crate provides the core functionality for the macros in the
55
[`sigma-compiler`](https://crates.io/crates/sigma-compiler) crate.

sigma-compiler-derive/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sigma-compiler-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sigma-compiler-derive"
3-
version = "0.1.0-rc2"
3+
version = "0.1.0"
44
edition = "2021"
55
license = "MIT"
66
repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler"
@@ -10,7 +10,7 @@ description = "Derive macros for the sigma-compiler crate"
1010
proc-macro = true
1111

1212
[dependencies]
13-
sigma-compiler-core = "0.1.0-rc2"
13+
sigma-compiler-core = "0.1.0"
1414
syn = "2.0"
1515

1616
[patch.crates-io]

sigma-compiler-derive/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
`sigma-compiler-derive` by Ian Goldberg, [email protected]
2-
Version 0.1.0-rc2, 2025-09-22
2+
Version 0.1.0, 2025-10-10
33

44
This crate provides the derive macros for the
55
[`sigma-compiler`](https://crates.io/crates/sigma-compiler) crate.

0 commit comments

Comments
 (0)