Skip to content

Commit abef2ed

Browse files
committed
Merge #7: Add info command and prepare 0.1 release
c399257 set release to 0.1 (Andrew Poelstra) e298e9e simplicity: add `info` command (Andrew Poelstra) 03ff090 lib: introduce simplicity Program object (Andrew Poelstra) 5723826 Cargo.toml: add simplicity dep (Andrew Poelstra) 8ef8782 cli: add regression tests for key generate command (Andrew Poelstra) bb7b77c hal-simplicity: add `keypair generate` method (Andrew Poelstra) 25d3a39 hal-simplicity: rename toplevel command set from "elements" to "simplicity" (Andrew Poelstra) Pull request description: Initial release. Will cut a 1.0.1 with README updates once I learn the `cargo install` syntax for using this tool. Top commit has no ACKs. Tree-SHA512: 3cd85d9aee1888958383842b9fcfd28b17b259c3a8288f80724132b4e342b2ef86d7985b11caae0f9ddf8a40a3e111701dd8d89f06feb6b7036b973528a7413a
2 parents 09aee37 + c399257 commit abef2ed

File tree

11 files changed

+838
-192
lines changed

11 files changed

+838
-192
lines changed

CHANGELOG.md

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1+
# v0.1.0 - 2025-07-29
12

2-
3-
# v0.2.1
4-
5-
- support decoding block headers (as blocks without txs)
6-
7-
# v0.2.0
8-
9-
- bump dependency versions:
10-
- elements to v0.21.1
11-
- hal to v0.9.0
12-
- serde to v1.0.84
13-
14-
# v0.1.6
15-
16-
- Support commands without args when using stdin
17-
- Include proper version number for --version
18-
19-
# v0.1.5
20-
21-
- Support passing various arguments through stdin
3+
- Initial release, including hal-elements functions and the `simplicity info` command

Cargo.lock

Lines changed: 194 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hal-simplicity"
3-
version = "0.2.1"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["Steven Roose <[email protected]>", "Andrew Poelstra <[email protected]>"]
66
license = "CC0-1.0"
@@ -31,6 +31,7 @@ serde_yaml = "0.8.8"
3131
hex = "0.3.2"
3232

3333
elements = { version = "0.25.2", features = [ "serde" ] }
34+
simplicity = { package = "simplicity-lang", version = "0.5.0", features = [ "base64", "serde" ] }
3435

3536
[lints.clippy]
3637
# Exclude lints we don't think are valuable.

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.63.0"
1+
msrv = "1.78.0"

0 commit comments

Comments
 (0)