Skip to content

Commit

Permalink
chore: release 0.4.0 (#318)
Browse files Browse the repository at this point in the history
* fix: bump version to 0.3.1

* fix: image in pop-cli README crate

* chore: update changelog

* fix: logo in pop-cli crate

* fix: logo in pop-cli crate from onpop site

* fix: remove unused images

* fix: version 0.4.0

* chore: update version to 0.4.0
  • Loading branch information
AlexD10S authored Oct 7, 2024
1 parent 582db18 commit 2af82eb
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 17 deletions.
Binary file removed .icons/logo.jpeg
Binary file not shown.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
# Changelog

All notable changes to this project will be documented in this file.
## [0.4.0] - 2024-10-04

### 🚀 Features

- Adding new packages to workspace Cargo.toml automatically (#277)
- Improve pallet template generation (#261)

### 🐛 Fixes

- Update chain spec and fix fetch_latest_tag (#282)
- Remove extra 0x in outputted text when pop up (#298)
- Limit API calls when generating parachain (#299)

### 🚜 Refactor

- Update new pallet template (default) (#272)
- Move extract_template_files into common crate (#283)

### 📚 Documentation

- Add community section to README (#289)

### 🎨 Styling

- Format in ci.yml (#287)

### ⚙️ Miscellaneous Tasks

- Bump cargo-contract and subxt versions (#307)
- Add clippy checks (#281)

### Build

- *(deps)* Bump zombienet-sdk (#273)

## [0.3.0] - 2024-07-26

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.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ edition = "2021"
documentation = "https://learn.onpop.io/"
license = "GPL-3.0"
repository = "https://github.com/r0gue-io/pop-cli"
version = "0.4.0"

[workspace.dependencies]
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pop CLI

<img src="https://github.com/r0gue-io/pop-cli/blob/main/.icons/logo.jpeg"></img>
<img src="https://learn.onpop.io/~gitbook/image?url=https%3A%2F%2F574321477-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Fspaces%252FUqTUVzYjmRwzCWTsfd1O%252Fuploads%252FxALe5uzVAiXnQFZOjxmw%252Fplay-on-polkadot.png%3Falt%3Dmedia%26token%3Dd8ce69f9-39fc-4568-9404-381032d923d4&width=400&dpr=2&quality=100&sign=19e161&sv=1"></img>

<div align="center">

Expand Down
10 changes: 5 additions & 5 deletions crates/pop-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pop-cli"
description = "An all-in-one tool for Polkadot development."
version = "0.3.0"
version.workspace = true
edition.workspace = true
documentation.workspace = true
license.workspace = true
Expand Down Expand Up @@ -31,20 +31,20 @@ strum.workspace = true
strum_macros.workspace = true

# contracts
pop-contracts = { path = "../pop-contracts", version = "0.3.0", optional = true }
pop-contracts = { path = "../pop-contracts", version = "0.4.0", optional = true }
sp-core = { workspace = true, optional = true }
sp-weights = { workspace = true, optional = true }

# parachains
pop-parachains = { path = "../pop-parachains", version = "0.3.0", optional = true }
pop-parachains = { path = "../pop-parachains", version = "0.4.0", optional = true }
dirs = { workspace = true, optional = true }
git2.workspace = true

# telemetry
pop-telemetry = { path = "../pop-telemetry", version = "0.3.0", optional = true }
pop-telemetry = { path = "../pop-telemetry", version = "0.4.0", optional = true }

# common
pop-common = { path = "../pop-common", version = "0.3.0" }
pop-common = { path = "../pop-common", version = "0.4.0" }

[dev-dependencies]
assert_cmd.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/pop-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "pop-common"
description = "Library that provides a collection of essential utilities and shared functionality for pop."
version = "0.3.0"
readme = "README.md"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/pop-contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "pop-contracts"
readme = "README.md"
repository.workspace = true
version = "0.3.0"
version.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down Expand Up @@ -35,7 +35,7 @@ contract-build.workspace = true
contract-extrinsics.workspace = true

# pop
pop-common = { path = "../pop-common", version = "0.3.0" }
pop-common = { path = "../pop-common", version = "0.4.0" }

[dev-dependencies]
dirs.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/pop-parachains/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "pop-parachains"
description = "Library for generating, building and running parachains."
version = "0.3.0"
license = "Apache-2.0"
documentation = "https://docs.rs/pop-parachains/latest/pop_parachains"
edition.workspace = true
readme = "README.md"
repository.workspace = true
version.workspace = true

[dependencies]
anyhow.workspace = true
Expand Down Expand Up @@ -34,7 +34,7 @@ zombienet-sdk.workspace = true
zombienet-support.workspace = true

# Pop
pop-common = { path = "../pop-common", version = "0.3.0" }
pop-common = { path = "../pop-common", version = "0.4.0" }

[dev-dependencies]
mockito.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/pop-telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "pop-telemetry"
description = "Library for collecting anonymous Usage Metrics Collection with Umami."
version = "0.3.0"
readme = "README.md"
edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true

[dependencies]
dirs = { workspace = true }
Expand Down

0 comments on commit 2af82eb

Please sign in to comment.