Skip to content

Commit

Permalink
feat: Bump Iota to v0.1.3 (#1643)
Browse files Browse the repository at this point in the history
* feat: Bump Iota to 0.1.3

* fix(ci): use new pkg version for iota-sdk in rust.yml

* fix(ts-sdk): update TARGETED_RPC_VERSION to 0.1.3

* fix(ci): add comment about explicit versioning in rust.yml
  • Loading branch information
lzpap authored Aug 6, 2024
1 parent 6cccffd commit 4086143
Show file tree
Hide file tree
Showing 10 changed files with 43 additions and 40 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: taiki-e/install-action@nextest
- name: cargo test
run: cargo nextest run --profile ci -E 'rdeps(iota-sdk)' -p [email protected]
# iota-sdk version needs to be explicitly defined here due to this bug
# https://github.com/rust-lang/cargo/issues/12891
# (we have the stardust iota-sdk package as a dependency)
run: cargo nextest run --profile ci -E 'rdeps(iota-sdk)' -p [email protected]

diff:
runs-on: [self-hosted]
Expand Down
62 changes: 31 additions & 31 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 @@ -168,7 +168,7 @@ members = [

[workspace.package]
# This version string will be inherited by iota-core, iota-faucet, iota-node, iota-tools, iota-sdk, iota-move-build, and iota crates.
version = "0.1.2"
version = "0.1.3"

[profile.release]
# debug = 1 means line charts only, which is minimum needed for good stack traces
Expand Down
2 changes: 1 addition & 1 deletion crates/iota-framework/packages/deepbook/Move.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ name = "MoveStdlib"
source = { local = "../move-stdlib" }

[move.toolchain-version]
compiler-version = "0.1.2"
compiler-version = "0.1.3"
edition = "legacy"
flavor = "iota"
2 changes: 1 addition & 1 deletion crates/iota-framework/packages/iota-framework/Move.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ name = "MoveStdlib"
source = { local = "../move-stdlib" }

[move.toolchain-version]
compiler-version = "0.1.2"
compiler-version = "0.1.3"
edition = "legacy"
flavor = "iota"
2 changes: 1 addition & 1 deletion crates/iota-framework/packages/iota-system/Move.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ name = "MoveStdlib"
source = { local = "../move-stdlib" }

[move.toolchain-version]
compiler-version = "0.1.2"
compiler-version = "0.1.3"
edition = "legacy"
flavor = "iota"
2 changes: 1 addition & 1 deletion crates/iota-framework/packages/move-stdlib/Move.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ manifest_digest = "774F1883683AAACD2512A2B6C01188350E10E5A035E065A8CF110CE44A564
deps_digest = "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855"

[move.toolchain-version]
compiler-version = "0.1.2"
compiler-version = "0.1.3"
edition = "legacy"
flavor = "iota"
2 changes: 1 addition & 1 deletion crates/iota-framework/packages/stardust/Move.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ name = "MoveStdlib"
source = { local = "../move-stdlib" }

[move.toolchain-version]
compiler-version = "0.1.2"
compiler-version = "0.1.3"
edition = "legacy"
flavor = "iota"
2 changes: 1 addition & 1 deletion crates/iota-open-rpc/spec/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"name": "Apache-2.0",
"url": "https://raw.githubusercontent.com/iotaledger/iota/main/LICENSE"
},
"version": "0.1.2"
"version": "0.1.3"
},
"methods": [
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
// This file is generated by genversion.mjs. Do not edit it directly.

export const PACKAGE_VERSION = '0.51.1';
export const TARGETED_RPC_VERSION = '0.1.2';
export const TARGETED_RPC_VERSION = '0.1.3';

0 comments on commit 4086143

Please sign in to comment.