Skip to content

Commit 74657f4

Browse files
authored
Publish (#963)
* add repo * fix * fix * fix * fix * chore: Release * wip * add repo * fix * fix * fix * fix * chore: Release * chore: Release * chore: Release
1 parent e196931 commit 74657f4

File tree

25 files changed

+65
-61
lines changed

25 files changed

+65
-61
lines changed

.github/workflows/master.yml.disabled

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/publish_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Publish Package
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: dtolnay/rust-toolchain@stable
1414
with:
1515
toolchain: stable

.github/workflows/release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Open a release PR
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
version:
6+
description: Version to release
7+
required: true
8+
type: string
9+
10+
jobs:
11+
make-release-pr:
12+
permissions:
13+
id-token: write # Enable OIDC
14+
pull-requests: write
15+
contents: write
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: taiki-e/install-action@v2
20+
with:
21+
tool: cargo-release
22+
- uses: chainguard-dev/actions/setup-gitsign@main
23+
- uses: cargo-bins/release-pr@v2
24+
with:
25+
github-token: ${{ secrets.GITHUB_TOKEN }}
26+
version: ${{ inputs.version }}
27+
crate-release-all: true

asset-registry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-asset-registry"
33
description = "Registry for (foreign) assets"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/asset-registry"
55
license = "Apache-2.0"
6-
version = "0.6.1"
6+
version = "0.6.7"
77
authors = ["Interlay Ltd, etc"]
88
edition = "2021"
99

@@ -27,7 +27,7 @@ xcm-builder = { workspace = true }
2727
xcm-executor = { workspace = true }
2828

2929
# orml
30-
orml-traits = { path = "../traits", version = "0.6.1", default-features = false }
30+
orml-traits = { path = "../traits", version = "0.6.7", default-features = false }
3131

3232
# for runtime-benchmarks
3333
polkadot-runtime-common = { workspace = true, optional = true }

auction/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-auction"
33
description = "Auction module that implements `Auction` trait."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
55
license = "Apache-2.0"
6-
version = "0.6.1"
6+
version = "0.6.7"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

@@ -17,7 +17,7 @@ frame-system = { workspace = true }
1717
sp-runtime = { workspace = true }
1818
sp-std = { workspace = true }
1919

20-
orml-traits = { path = "../traits", version = "0.6.1", default-features = false }
20+
orml-traits = { path = "../traits", version = "0.6.7", default-features = false }
2121

2222
[dev-dependencies]
2323
sp-core = { workspace = true, features = ["std"] }

authority/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-authority"
33
description = "Utility pallet to perform ROOT calls in a PoA network"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
55
license = "Apache-2.0"
6-
version = "0.6.1"
6+
version = "0.6.7"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

benchmarking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-benchmarking"
33
description = "Provide macro to benchmark Substrate runtime."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/benchmarking"
55
license = "Apache-2.0"
6-
version = "0.6.1"
6+
version = "0.6.7"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

build-script-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-build-script-utils"
33
description = "Crate with utility functions for `build.rs` scripts."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/build-script-utils"
55
license = "Apache-2.0"
6-
version = "0.6.1"
6+
version = "0.6.7"
77
authors = ["Parity Technologies <[email protected]>", "Laminar Developers <[email protected]>"]
88
edition = "2021"
99

currencies/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-currencies"
33
description = "Provide `MultiCurrency` implementation using `pallet-balances` and `orml-tokens` module."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/currencies"
55
license = "Apache-2.0"
6-
version = "0.6.1"
6+
version = "0.6.7"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

@@ -18,8 +18,8 @@ sp-io = { workspace = true }
1818
sp-runtime = { workspace = true }
1919
sp-std = { workspace = true }
2020

21-
orml-traits = { path = "../traits", version = "0.6.1", default-features = false }
22-
orml-utilities = { path = "../utilities", version = "0.6.1", default-features = false }
21+
orml-traits = { path = "../traits", version = "0.6.7", default-features = false }
22+
orml-utilities = { path = "../utilities", version = "0.6.7", default-features = false }
2323

2424
[dev-dependencies]
2525
pallet-balances = { workspace = true, features = ["std"] }

gradually-update/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-gradually-update"
33
description = "Provides way to adjust numeric parameter gradually over a period of time."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/gradually-update"
55
license = "Apache-2.0"
6-
version = "0.6.1"
6+
version = "0.6.7"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

0 commit comments

Comments
 (0)