Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to official provenance 1.18.0 release #148

Merged
merged 18 commits into from
Mar 27, 2024
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
35 changes: 7 additions & 28 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/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.17.1"
provenance_version: "v1.18.0"
smart_contract_action_version: "v1.2.0"
test_script: "./scripts/gh-action-test/tutorial_test.sh"

Expand All @@ -56,7 +56,7 @@ jobs:
uses: provenance-io/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.17.1"
provenance_version: "v1.18.0"
smart_contract_action_version: "v1.2.0"
test_script: "./scripts/gh-action-test/attrs_test.sh"

Expand All @@ -77,7 +77,7 @@ jobs:
uses: provenance-io/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.17.1"
provenance_version: "v1.18.0"
smart_contract_action_version: "v1.2.0"
test_script: "./scripts/gh-action-test/marker_test.sh"

Expand All @@ -98,7 +98,7 @@ jobs:
uses: provenance-io/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.17.1"
provenance_version: "v1.18.0"
smart_contract_action_version: "v1.2.0"
test_script: "./scripts/gh-action-test/msgfees_test.sh"

Expand All @@ -119,31 +119,10 @@ jobs:
uses: provenance-io/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.17.1"
provenance_version: "v1.18.0"
smart_contract_action_version: "v1.2.0"
test_script: "./scripts/gh-action-test/name_test.sh"

# test_nft_smart_contract:
# runs-on: ubuntu-latest
# name: Test NFT Smart Contract
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Add wasm32 target
# run: |
# rustup target add wasm32-unknown-unknown
# - name: Build wasm binary
# run: |
# cd ./contracts/nft
# make all
# - name: Smart Contract Test setup
# uses: provenance-io/[email protected]
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# provenance_version: "v1.17.1"
# smart_contract_action_version: "v1.2.0"
# test_script: "./scripts/gh-action-test/nft_test.sh"

test_scope_smart_contract:
runs-on: ubuntu-latest
name: Test Scope Smart Contract
Expand All @@ -161,7 +140,7 @@ jobs:
uses: provenance-io/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.17.1"
provenance_version: "v1.18.0"
smart_contract_action_version: "v1.2.0"
test_script: "./scripts/gh-action-test/scope_test.sh"

Expand All @@ -182,6 +161,6 @@ jobs:
uses: provenance-io/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
provenance_version: "v1.17.1"
provenance_version: "v1.18.0"
smart_contract_action_version: "v1.2.0"
test_script: "./scripts/gh-action-test/trigger_test.sh"
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
* Create security contract to link assets with a security
type ([#138](https://github.com/provenance-io/provwasm/issues/138))
* Bump to Provenance 1.18.0-rc2 ([#143](https://github.com/provenance-io/provwasm/issues/143))
* remove nft, security, and template contracts ([#145](https://github.com/provenance-io/provwasm/pull/145))
* Bump to Provenance 1.18.0 and add new exchange types ([#146](https://github.com/provenance-io/provwasm/issues/146))
* Update dependencies, including cosmwasm 1.5 ([#147](https://github.com/provenance-io/provwasm/issues/147))

## Releases

Expand Down
94 changes: 42 additions & 52 deletions Cargo.lock

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

25 changes: 13 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,30 +25,31 @@ license = "Apache-2.0"

[workspace.dependencies]
### CosmWasm
cosmwasm-schema = { version = "=1.2.8" }
cosmwasm-std = { version = "=1.2.8", default-features = false }
cw-storage-plus = { version = "=1.1.0" }

cosmwasm-schema = { version = "1.5" }
cosmwasm-std = { version = "1.5", default-features = false, features = ["cosmwasm_1_1"] }
cw-storage-plus = { version = "1.2.0" }

### ProvWasm
provwasm-proto-build = { version = "0.1.0", path = "packages/proto-build" }
provwasm-common = { version = "0.1.0", path = "packages/provwasm-common" }
provwasm-mocks = { version = "2.2.0", path = "packages/provwasm-mocks" }
provwasm-proc-macro = { version = "0.1.0", path = "packages/provwasm-proc-macro" }
provwasm-proc-macro = { version = "0.1.1", path = "packages/provwasm-proc-macro" }
provwasm-std = { version = "2.2.0", path = "packages/provwasm-std" }

base64 = "=0.21.7"
chrono = { version = "=0.4.33", default-features = false }
base64 = "0.22.0"
chrono = { version = "0.4.33", default-features = false }
prost = { version = "=0.11.9", default-features = false, features = [
"prost-derive",
] }
prost-types = { version = "=0.11.9", default-features = false }
prost-build = "=0.11.9"
schemars = "=0.8.16"
serde = { version = "=1.0.196", default-features = false, features = [
prost-types = { version = "0.11.9", default-features = false }
prost-build = "0.11.9"
schemars = "0.8.16"
serde = { version = "1.0.197", default-features = false, features = [
"derive",
] }
serde_json = { version = "=1.0.113", features = ["std"] }
thiserror = { version = "=1.0.56" }
serde_json = { version = "1.0.115", features = ["std"] }
thiserror = { version = "1.0.58" }

[profile.release]
opt-level = 3
Expand Down
5 changes: 5 additions & 0 deletions RELEASE_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@
* Bump to Provenance 1.17.1 ([#135](https://github.com/provenance-io/provwasm/issues/135))
* Add ibc message types ([#136](https://github.com/provenance-io/provwasm/issues/136))
* Update contracts to use `cosmwasm/optimzer` ([#140](https://github.com/provenance-io/provwasm/issues/140))
* Create security contract to link assets with a security
type ([#138](https://github.com/provenance-io/provwasm/issues/138))
* Bump to Provenance 1.18.0-rc2 ([#143](https://github.com/provenance-io/provwasm/issues/143))
* remove nft, security, and template contracts ([#145](https://github.com/provenance-io/provwasm/pull/145))
* Bump to Provenance 1.18.0 and add new exchange types ([#146](https://github.com/provenance-io/provwasm/issues/146))
* Update dependencies, including cosmwasm 1.5 ([#147](https://github.com/provenance-io/provwasm/issues/147))
Loading
Loading