Skip to content

Commit

Permalink
🔖 Updated crates versions based on crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
lukacan committed Aug 21, 2023
1 parent 1699802 commit d8f450c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ incremented upon a breaking change and the patch version will be incremented for

## [Unreleased]

## [0.5.0] - 2023-08-21
## [0.4.1] - 2023-08-21
### Changed
- Upgrade Solana (`=1.16.6`) and Anchor framework (`=0.28.0`) versions.
### Fixed
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ exclude = ["examples/"]


[workspace.dependencies]
trdelnik-test = { path = "./crates/test", version = "0.3.0" }
trdelnik-client = { path = "./crates/client", version = "0.5.0" }
trdelnik-explorer = { path = "./crates/explorer", version = "0.4.0" }
trdelnik-test = { path = "./crates/test", version = "0.3.1" }
trdelnik-client = { path = "./crates/client", version = "0.4.1" }
trdelnik-explorer = { path = "./crates/explorer", version = "0.3.1" }
anchor-client = { version="0.28.0", features = ["async"]}
solana-sdk = "1.16.6"
solana-cli-output = "1.16.6"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trdelnik-cli"
version = "0.4.0"
version = "0.4.1"
edition = "2021"
repository = "https://github.com/Ackee-Blockchain/trdelnik"
license-file = "../../LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion crates/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trdelnik-client"
version = "0.5.0"
version = "0.4.1"
edition = "2021"
repository = "https://github.com/Ackee-Blockchain/trdelnik"
license-file = "../../LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/commander.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl Commander {
/// It's used internally by the [`#[trdelnik_test]`](trdelnik_test::trdelnik_test) macro.
#[throws]
pub async fn generate_program_client_deps(&self) {
let trdelnik_dep = r#"trdelnik-client = "0.5.0""#.parse().unwrap();
let trdelnik_dep = r#"trdelnik-client = "0.4.1""#.parse().unwrap();
// @TODO replace the line above with the specific version or commit hash
// when Trdelnik is released or when its repo is published.
// Or use both variants - path for Trdelnik repo/dev and version/commit for users.
Expand Down
2 changes: 1 addition & 1 deletion crates/client/src/templates/trdelnik-tests/Cargo.toml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
[dev-dependencies]
fehler = "1.0.0"
rstest = "0.12.0"
trdelnik-client = "0.5.0"
trdelnik-client = "0.4.1"
program_client = { path = "../.program_client" }
2 changes: 1 addition & 1 deletion crates/explorer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trdelnik-explorer"
version = "0.4.0"
version = "0.3.1"
edition = "2021"
repository = "https://github.com/Ackee-Blockchain/trdelnik"
license-file = "../../LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion crates/test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trdelnik-test"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
repository = "https://github.com/Ackee-Blockchain/trdelnik"
license-file = "../../LICENSE"
Expand Down

0 comments on commit d8f450c

Please sign in to comment.