Skip to content

Commit

Permalink
📌 bump crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lukacan committed May 20, 2024
1 parent 55a05e0 commit 5bfb3a6
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
incremented upon a breaking change and the patch version will be incremented for features.

## [Unreleased]

## [0.6.0] - 2024-05-20
### Added
- feat/anchor 0.30.0 support ([#148](https://github.com/Ackee-Blockchain/trident/pull/148))
- fix/allow to process duplicate transactions ([#147](https://github.com/Ackee-Blockchain/trident/pull/147))
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<img src="https://img.shields.io/github/actions/workflow/status/Ackee-Blockchain/trident/run_examples.yml?label=Test%20Escrow%20and%20Turnstile&colorA=f6f8fa&style=flat" alt="Test Escrow and Turnstile">
</picture>
</a>

</p>

<br />
Expand Down
11 changes: 7 additions & 4 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,17 @@ pretty_assertions = "1.1.0"
macrotest = "1.0.9"

[dependencies]
trident-derive-displayix = { path = "./derive/display_ix" }
trident-derive-fuzz-deserialize = { path = "./derive/fuzz_deserialize" }
trident-derive-fuzz-test-executor = { path = "./derive/fuzz_test_executor" }
trident-derive-displayix = { path = "./derive/display_ix", version = "0.0.1" }
trident-derive-fuzz-deserialize = { path = "./derive/fuzz_deserialize", version = "0.0.1" }
trident-derive-fuzz-test-executor = { path = "./derive/fuzz_test_executor", version = "0.0.1" }
trident-test = { workspace = true }
# INFO: Anchor-spl is here as dependency only to activate the idl-build feature, so that
# users do not have to do it manually in their program's Cargo.toml
anchor-spl = { version = ">=0.29.0", features = ["idl-build"] }
anchor-lang = { version = ">=0.29.0", features = ["idl-build", "init-if-needed"] }
anchor-lang = { version = ">=0.29.0", features = [
"idl-build",
"init-if-needed",
] }
anchor-syn = { version = ">=0.29.0" }
solana-sdk = { workspace = true }
solana-cli-output = { workspace = true }
Expand Down
4 changes: 4 additions & 0 deletions crates/client/derive/display_ix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name = "trident-derive-displayix"
version = "0.0.1"
rust-version = "1.60"
edition = "2021"
license-file = "../../../../LICENSE"
readme = "../../../../README.md"
description = "trident-derive-displayix"


[lib]
proc-macro = true
Expand Down
3 changes: 3 additions & 0 deletions crates/client/derive/fuzz_deserialize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "trident-derive-fuzz-deserialize"
version = "0.0.1"
rust-version = "1.60"
edition = "2021"
license-file = "../../../../LICENSE"
readme = "../../../../README.md"
description = "trident-derive-fuzz-deserialize"

[lib]
proc-macro = true
Expand Down
3 changes: 3 additions & 0 deletions crates/client/derive/fuzz_test_executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "trident-derive-fuzz-test-executor"
version = "0.0.1"
rust-version = "1.60"
edition = "2021"
license-file = "../../../../LICENSE"
readme = "../../../../README.md"
description = "trident-derive-fuzz-test-executor"

[lib]
proc-macro = true
Expand Down

0 comments on commit 5bfb3a6

Please sign in to comment.