Skip to content

Commit 4973037

Browse files
committed
chore: release v1.0.0
1 parent 78746f0 commit 4973037

3 files changed

Lines changed: 26 additions & 18 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ jobs:
5757
- uses: taiki-e/install-action@v2
5858
with:
5959
tool: cargo-release
60-
- name: Verify lockfile
61-
run: cargo check --workspace --locked
6260
- name: Publish
6361
env:
6462
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [unreleased]
5+
## [1.0.0] - 2026-05-11
66

77
### 🚀 Features
88

99
- *(utxorpc)* Add v1beta spec support alongside v1alpha (#745)
1010
- Prep for van Rossem hard fork (#747)
11+
- Bump rust edition to 2024 (#770)
1112

1213
### 🐛 Bug Fixes
1314

@@ -24,10 +25,13 @@ All notable changes to this project will be documented in this file.
2425

2526
- Tidy per-crate READMEs onto a common structure (#759)
2627
- Improve root readme (#760)
28+
- Add missing docstrings across the board (#769)
29+
- Use permalinks for examples in docstrings
2730

2831
### 🔧 Continuous Integration
2932

3033
- Improve github workflow
34+
- Switch release workflow to cargo-release split flow (#768)
3135

3236
### 🧪 Testing
3337

@@ -40,6 +44,8 @@ All notable changes to this project will be documented in this file.
4044
- Fix lints, rustdoc, and feature gates across workspace (#764)
4145
- Declare MSRV (1.88) and verify in CI (#765)
4246
- Hoist common cargo metadata and dependencies to workspace (#766)
47+
- Replace git-chglog automation with git-cliff (#767)
48+
- Don't release example crates
4349

4450
### Build
4551

@@ -49,6 +55,10 @@ All notable changes to this project will be documented in this file.
4955
- *(deps)* Update socket2 requirement from 0.5.5 to 0.6.3 (#741)
5056
- *(deps)* Update rand requirement from 0.8.5 to 0.10.1 (#742)
5157

58+
### Hore
59+
60+
- Move git-cliff hook to single location
61+
5262
## [1.0.0-alpha.6] - 2026-03-30
5363

5464
### 🐛 Bug Fixes

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "1.0.0-alpha.6"
2+
version = "1.0.0"
33
edition = "2024"
44
rust-version = "1.88"
55
license = "Apache-2.0"
@@ -48,20 +48,20 @@ byteorder = "1.5.0"
4848
rand = "0.10.1"
4949
proptest = "1.7.0"
5050

51-
pallas = { version = "=1.0.0-alpha.6", path = "pallas" }
52-
pallas-codec = { version = "=1.0.0-alpha.6", path = "pallas-codec" }
53-
pallas-crypto = { version = "=1.0.0-alpha.6", path = "pallas-crypto" }
54-
pallas-addresses = { version = "=1.0.0-alpha.6", path = "pallas-addresses" }
55-
pallas-primitives = { version = "=1.0.0-alpha.6", path = "pallas-primitives" }
56-
pallas-traverse = { version = "=1.0.0-alpha.6", path = "pallas-traverse" }
57-
pallas-network = { version = "=1.0.0-alpha.6", path = "pallas-network" }
58-
pallas-network2 = { version = "=1.0.0-alpha.6", path = "pallas-network2" }
59-
pallas-configs = { version = "=1.0.0-alpha.6", path = "pallas-configs" }
60-
pallas-txbuilder = { version = "=1.0.0-alpha.6", path = "pallas-txbuilder" }
61-
pallas-utxorpc = { version = "=1.0.0-alpha.6", path = "pallas-utxorpc" }
62-
pallas-hardano = { version = "=1.0.0-alpha.6", path = "pallas-hardano" }
63-
pallas-math = { version = "=1.0.0-alpha.6", path = "pallas-math" }
64-
pallas-validate = { version = "=1.0.0-alpha.6", path = "pallas-validate" }
51+
pallas = { version = "=1.0.0", path = "pallas" }
52+
pallas-codec = { version = "=1.0.0", path = "pallas-codec" }
53+
pallas-crypto = { version = "=1.0.0", path = "pallas-crypto" }
54+
pallas-addresses = { version = "=1.0.0", path = "pallas-addresses" }
55+
pallas-primitives = { version = "=1.0.0", path = "pallas-primitives" }
56+
pallas-traverse = { version = "=1.0.0", path = "pallas-traverse" }
57+
pallas-network = { version = "=1.0.0", path = "pallas-network" }
58+
pallas-network2 = { version = "=1.0.0", path = "pallas-network2" }
59+
pallas-configs = { version = "=1.0.0", path = "pallas-configs" }
60+
pallas-txbuilder = { version = "=1.0.0", path = "pallas-txbuilder" }
61+
pallas-utxorpc = { version = "=1.0.0", path = "pallas-utxorpc" }
62+
pallas-hardano = { version = "=1.0.0", path = "pallas-hardano" }
63+
pallas-math = { version = "=1.0.0", path = "pallas-math" }
64+
pallas-validate = { version = "=1.0.0", path = "pallas-validate" }
6565

6666
[workspace.metadata.release]
6767
push = false

0 commit comments

Comments
 (0)