Skip to content

Commit 1a0d204

Browse files
authored
chore: release0.11.0 (#707)
* chore: bump versions to 0.11.0 * chore: update CHANGELOG * fix: pop_common to 0.11.0
1 parent 2dab6d6 commit 1a0d204

File tree

6 files changed

+54
-12
lines changed

6 files changed

+54
-12
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,48 @@
22

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

5+
## [0.11.0] - 2025-11-03
6+
7+
### 🚀 Features
8+
9+
- Always build contracts with pop up (#657)
10+
- Upgrade to rust edition 2024 (#656)
11+
- Do not ask for confirmation when removing all in the cache (#660)
12+
- *(cli)* Allow to choose a chain from a list (#658)
13+
- Build spec runtime (#647)
14+
- Upgrade to rust 1.90 (#673)
15+
- Read constants and storage when using `pop call chain` (#664)
16+
- Build the chain with runtime (#671)
17+
- *(cli)* Fetch latest release when instantiating the template (#680)
18+
- Fetch polkadot-omni-node with pop up command (#684)
19+
- Force specifying storage parameters if the key is composite (#697)
20+
- Pop up chain spec cmd (#699)
21+
- Upgrade zombienet from 0.4.1 to 0.4.2 (#703)
22+
- Specify optional test filter (#701)
23+
- Using ink! `v6.0.0-beta` (#645)
24+
- Contract call read (#677)
25+
- Add eth-rpc binary to `pop up contract` (#705)
26+
- Remove deprecated templates (#706)
27+
28+
### 🐛 Fixes
29+
30+
- `pop install` command with rustup (#681)
31+
- Allow `pop build spec` to specify the runtime path as argument (#687)
32+
- Add is-relay field to `pop build spec` (#693)
33+
- Pop call with composite types (#696)
34+
- StripPrefixError contract and pallet creation (#702)
35+
36+
### 🚜 Refactor
37+
38+
- Remove psp example and improve pop new contract devex (#700)
39+
40+
### ⚙️ Miscellaneous Tasks
41+
42+
- Optimize ci integration tests (#653)
43+
- *(ci)* Mark coverage status project and patch as informational only (#662)
44+
- Publish on homebrew (#666)
45+
- Lint PR title (#698)
46+
547
## [0.10.0] - 2025-10-01
648

749
### 🚀 Features

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ documentation = "https://learn.onpop.io/"
1818
license = "GPL-3.0"
1919
repository = "https://github.com/r0gue-io/pop-cli"
2020
rust-version = "1.90"
21-
version = "0.10.0"
21+
version = "0.11.0"
2222

2323
[workspace.dependencies]
2424
anyhow = { version = "1.0", default-features = false }

crates/pop-chains/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ sc-cli.workspace = true
5454
sp-version.workspace = true
5555

5656
# Pop
57-
pop-common = { path = "../pop-common", version = "0.10.0" }
57+
pop-common = { path = "../pop-common", version = "0.11.0" }
5858

5959
[dev-dependencies]
6060
# Used in doc tests.

crates/pop-cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,21 @@ toml.workspace = true
3737
url.workspace = true
3838

3939
# contracts
40-
pop-contracts = { path = "../pop-contracts", version = "0.10.0", default-features = false, optional = true }
40+
pop-contracts = { path = "../pop-contracts", version = "0.11.0", default-features = false, optional = true }
4141
sp-core = { workspace = true }
4242

4343
# parachains
44-
pop-chains = { path = "../pop-chains", version = "0.10.0", optional = true }
44+
pop-chains = { path = "../pop-chains", version = "0.11.0", optional = true }
4545
git2 = { workspace = true, optional = true }
4646
regex.workspace = true
4747
tracing-subscriber = { workspace = true, optional = true }
4848
scale-value = { workspace = true, optional = true }
4949

5050
# telemetry
51-
pop-telemetry = { path = "../pop-telemetry", version = "0.10.0", optional = true }
51+
pop-telemetry = { path = "../pop-telemetry", version = "0.11.0", optional = true }
5252

5353
# common
54-
pop-common = { path = "../pop-common", version = "0.10.0" }
54+
pop-common = { path = "../pop-common", version = "0.11.0" }
5555

5656
# wallet-integration
5757
axum = { workspace = true, optional = true }

crates/pop-contracts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ contract-transcode.workspace = true
3535
scale-info.workspace = true
3636

3737
# pop
38-
pop-common = { path = "../pop-common", version = "0.10.0" }
38+
pop-common = { path = "../pop-common", version = "0.11.0" }
3939

4040
[dev-dependencies]
4141
# Used in doc tests.

0 commit comments

Comments
 (0)