Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,48 @@

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

## [0.11.0] - 2025-11-03

### 🚀 Features

- Always build contracts with pop up (#657)
- Upgrade to rust edition 2024 (#656)
- Do not ask for confirmation when removing all in the cache (#660)
- *(cli)* Allow to choose a chain from a list (#658)
- Build spec runtime (#647)
- Upgrade to rust 1.90 (#673)
- Read constants and storage when using `pop call chain` (#664)
- Build the chain with runtime (#671)
- *(cli)* Fetch latest release when instantiating the template (#680)
- Fetch polkadot-omni-node with pop up command (#684)
- Force specifying storage parameters if the key is composite (#697)
- Pop up chain spec cmd (#699)
- Upgrade zombienet from 0.4.1 to 0.4.2 (#703)
- Specify optional test filter (#701)
- Using ink! `v6.0.0-beta` (#645)
- Contract call read (#677)
- Add eth-rpc binary to `pop up contract` (#705)
- Remove deprecated templates (#706)

### 🐛 Fixes

- `pop install` command with rustup (#681)
- Allow `pop build spec` to specify the runtime path as argument (#687)
- Add is-relay field to `pop build spec` (#693)
- Pop call with composite types (#696)
- StripPrefixError contract and pallet creation (#702)

### 🚜 Refactor

- Remove psp example and improve pop new contract devex (#700)

### ⚙️ Miscellaneous Tasks

- Optimize ci integration tests (#653)
- *(ci)* Mark coverage status project and patch as informational only (#662)
- Publish on homebrew (#666)
- Lint PR title (#698)

## [0.10.0] - 2025-10-01

### 🚀 Features
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ documentation = "https://learn.onpop.io/"
license = "GPL-3.0"
repository = "https://github.com/r0gue-io/pop-cli"
rust-version = "1.90"
version = "0.10.0"
version = "0.11.0"

[workspace.dependencies]
anyhow = { version = "1.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/pop-chains/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ sc-cli.workspace = true
sp-version.workspace = true

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

[dev-dependencies]
# Used in doc tests.
Expand Down
8 changes: 4 additions & 4 deletions crates/pop-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ toml.workspace = true
url.workspace = true

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

# parachains
pop-chains = { path = "../pop-chains", version = "0.10.0", optional = true }
pop-chains = { path = "../pop-chains", version = "0.11.0", optional = true }
git2 = { workspace = true, optional = true }
regex.workspace = true
tracing-subscriber = { workspace = true, optional = true }
scale-value = { workspace = true, optional = true }

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

# common
pop-common = { path = "../pop-common", version = "0.10.0" }
pop-common = { path = "../pop-common", version = "0.11.0" }

# wallet-integration
axum = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/pop-contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ contract-transcode.workspace = true
scale-info.workspace = true

# pop
pop-common = { path = "../pop-common", version = "0.10.0" }
pop-common = { path = "../pop-common", version = "0.11.0" }

[dev-dependencies]
# Used in doc tests.
Expand Down
Loading