Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
28 changes: 21 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
test_script: "./scripts/gh-action-test/tutorial_test.sh"

test_attrs_smart_contract:
Expand All @@ -57,7 +57,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/attrs_test.sh"

Expand All @@ -78,7 +78,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/marker_test.sh"

Expand All @@ -99,7 +99,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/name_test.sh"

Expand All @@ -120,7 +120,7 @@ jobs:
# uses: provenance-io/provenance-testing-action@v1.3.0
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# provenance_version: "v1.26.0-rc2"
# provenance_version: "v1.26.0"
# smart_contract_action_version: "latest"
# test_script: "./scripts/gh-action-test/scope_test.sh"

Expand All @@ -141,12 +141,26 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/trigger_test.sh"

test_provwasm_std_features:
runs-on: ubuntu-latest
name: Test Provwasm Std Features
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Add cargo-all-features plugin
run: |
cargo install cargo-all-features
- name: Test all features
run: |
cd ./packages/provwasm-std
cargo all-features check

create_release:
needs: [ test_attrs_smart_contract, test_marker_smart_contract, test_name_smart_contract, test_scope_smart_contract, test_trigger_smart_contract, test_tutorial_smart_contract ]
needs: [ test_attrs_smart_contract, test_marker_smart_contract, test_name_smart_contract, test_scope_smart_contract, test_trigger_smart_contract, test_tutorial_smart_contract, test_provwasm_std_features ]
runs-on: ubuntu-latest
name: Create Release
steps:
Expand Down
26 changes: 20 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
test_script: "./scripts/gh-action-test/tutorial_test.sh"

test_attrs_smart_contract:
Expand All @@ -55,7 +55,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/attrs_test.sh"

Expand All @@ -76,7 +76,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/marker_test.sh"

Expand All @@ -97,7 +97,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/name_test.sh"

Expand All @@ -118,7 +118,7 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/scope_test.sh"

Expand All @@ -139,6 +139,20 @@ jobs:
uses: provenance-io/provenance-testing-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.26.0-rc2"
provenance_version: "v1.26.0"
smart_contract_action_version: "latest"
test_script: "./scripts/gh-action-test/trigger_test.sh"

test_provwasm_std_features:
runs-on: ubuntu-latest
name: Test Provwasm Std Features
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Add cargo-all-features plugin
run: |
cargo install cargo-all-features
- name: Test all features
run: |
cd ./packages/provwasm-std
cargo all-features check
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## Releases

### [v2.8.0](https://github.com/provenance-io/provwasm/tree/v2.8.0)

* Add feature flags to gate modules [[#171]]([#171](https://github.com/provenance-io/provwasm/pull/171))

### [v2.7.1](https://github.com/provenance-io/provwasm/tree/v2.7.1)

* Update to Provenance v1.26.0-rc2 [[#169]]([#167](https://github.com/provenance-io/provwasm/pull/169))
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ members = [
]

[workspace.package]
version = "2.7.1"
version = "2.8.0"
repository = "https://github.com/provenance-io/provwasm"
edition = "2021"
license = "Apache-2.0"
Expand All @@ -35,10 +35,10 @@ cw-storage-plus = { version = "2.0.0" }

### ProvWasm
provwasm-common = { version = "0.3.1", path = "packages/provwasm-common" }
provwasm-mocks = { version = "2.7.1", path = "packages/provwasm-mocks" }
provwasm-mocks = { version = "2.8.0", path = "packages/provwasm-mocks" }
provwasm-proc-macro = { version = "0.3.1", path = "packages/provwasm-proc-macro" }
provwasm-proto-build = { version = "0.1.0", path = "packages/proto-build" }
provwasm-std = { version = "2.7.1", path = "packages/provwasm-std" }
provwasm-std = { version = "2.8.0", path = "packages/provwasm-std", default-features = false }

chrono = { version = "0.4.37", default-features = false }
prost = { version = "0.13.2", default-features = false, features = [
Expand Down
Loading