Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The minor version will be incremented upon a breaking change and the patch versi

### Fixes

- idl: Bump version to 0.1.3 ([#4453](https://github.com/solana-foundation/anchor/pull/4453)).
- client: Avoid panic in `parse_logs_response` when a program-emitted log line ends with `invoke [1]` ([#4461](https://github.com/solana-foundation/anchor/issues/4461)).
- cli: Correctly honor `--skip-seed-phrase-validation` in `keygen recover` ([#4417](https://github.com/solana-foundation/anchor/pull/4417)).
- spl: Fix wrong owner pubkey in CPI Guard enable/disable ([#4322](https://github.com/solana-foundation/anchor/pull/4322)).
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 4 additions & 1 deletion bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ case "$(uname)" in
Darwin*) sedi=(-i "")
esac

# Bump all rust crates that have `publish` enabled
# Bump all rust crates that have `publish` enabled (excluding crates that are
# versioned separately)
cargo release version $version \
--workspace \
--exclude anchor-lang-idl \
--exclude anchor-lang-idl-spec \
$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[] | select(.publish == []) | "--exclude " + .name') \
--no-confirm \
--execute
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ idl-localnet-testing = []
anchor-cli-macros = { path = "cli-macros", version = "1.0.2"}
anchor-client = { path = "../client", version = "1.0.2" }
anchor-lang = { path = "../lang", version = "1.0.2" }
anchor-lang-idl = { path = "../idl", version = "0.1.2", features = ["build", "convert"] }
anchor-lang-idl = { path = "../idl", version = "0.1.3", features = ["build", "convert"] }
anyhow = "1.0.32"
base64 = "0.21"
bincode = "1.3.3"
Expand Down
4 changes: 2 additions & 2 deletions idl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anchor-lang-idl"
version = "0.1.2"
publish = false
version = "0.1.3"
publish = true
authors = ["Anchor Maintainers <accounts@200ms.io>"]
repository = "https://github.com/solana-foundation/anchor"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ anchor-derive-space = { path = "./derive/space", version = "1.0.2" }
anchor-lang-error = { path = "error", version = "1.0.2"}

# `anchor-lang-idl` should only be included with `idl-build` feature
anchor-lang-idl = { path = "../idl", version = "0.1.2", optional = true }
anchor-lang-idl = { path = "../idl", version = "0.1.3", optional = true }

base64 = "0.21"
bincode = "1"
Expand Down
2 changes: 1 addition & 1 deletion lang/attribute/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ anchor-debug = ["anchor-syn/anchor-debug"]
idl-build = ["anchor-syn/idl-build"]

[dependencies]
anchor-lang-idl = { path = "../../../idl", version = "0.1.2", features = ["convert"] }
anchor-lang-idl = { path = "../../../idl", version = "0.1.3", features = ["convert"] }
anchor-syn = { path = "../../syn", version = "1.0.2" }
anyhow = "1"
heck = "0.3"
Expand Down
Loading