Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski committed Oct 19, 2023
1 parent d0ae008 commit cafeba4
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cw-orchestrator Changelog

## Unpublished
## 0.17.0

- Added possibility to not panic in parse network by @Buckram123
- Added stargate feature to cw-multi-test
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ osmosis-test-tube = { version = "19.0.0" }

anyhow = "1.0"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
cw-orch-daemon = { path = "./cw-orch-daemon", version = "0.16.5" }
cw-orch-core = { path = "packages/cw-orch-core", version = "0.16.2" }
cw-orch-traits = { path = "packages/cw-orch-traits", version = "0.16.2" }
cw-orch-mock = { path = "packages/cw-orch-mock", version = "0.16.2" }
cw-orch-contract-derive = { path = "packages/cw-orch-contract-derive", version = "0.15.0" }
cw-orch-fns-derive = { path = "packages/cw-orch-fns-derive", version = "0.16.1" }
cw-orch-networks = { path = "packages/cw-orch-networks", version = "0.16.0" }
cw-orch-daemon = { path = "./cw-orch-daemon", version = "0.17.0" }
cw-orch-core = { path = "packages/cw-orch-core", version = "0.17.0" }
cw-orch-traits = { path = "packages/cw-orch-traits", version = "0.17.0" }
cw-orch-mock = { path = "packages/cw-orch-mock", version = "0.17.0" }
cw-orch-contract-derive = { path = "packages/cw-orch-contract-derive", version = "0.17.0" }
cw-orch-fns-derive = { path = "packages/cw-orch-fns-derive", version = "0.17.0" }
cw-orch-networks = { path = "packages/cw-orch-networks", version = "0.17.0" }
thiserror = { version = "1.0.21" }
sha256 = { version = "1" }
serde_json = "1.0.79"
Expand Down
2 changes: 1 addition & 1 deletion cw-orch-daemon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-orch-daemon"
version = "0.16.5"
version = "0.17.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion cw-orch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-orch"
version = "0.16.5"
version = "0.17.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down
5 changes: 3 additions & 2 deletions docs/src/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ In this quick-start guide, we will review the necessary steps in order to integr
## Summary

- [Summary](#summary)
- [Single Contract Integration](#single-contract-integration)
- [Adding `cw-orch` to your `Cargo.toml` file](#adding-cw-orch-to-your-cargotoml-file)
- [Creating an interface](#creating-an-interface)
- [Creating an Interface](#creating-an-interface)
- [Interaction helpers](#interaction-helpers)
- [Using the integration](#using-the-integration)
- [Integration in a workspace](#integration-in-a-workspace)
Expand All @@ -39,7 +40,7 @@ Alternatively, you can add it manually in your `Cargo.toml` file as shown below:

```toml
[dependencies]
cw-orch = {version = "0.16.4", optional = true } # Latest version at time of writing
cw-orch = {version = "0.17.0", optional = true } # Latest version at time of writing
```

Now that we have added `cw-orch` as an optional dependency we will want to enable it through a feature-flag. This ensures that the code added by `cw-orch` is not included in the wasm artifact of the contract.
Expand Down
4 changes: 2 additions & 2 deletions docs/src/single_contract/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Before we can create an interface we need to add cw-orch to the contract's `Carg

```shell
$ cargo add --optional cw-orch
> Adding cw-orch v0.16.0 to optional dependencies.
> Adding cw-orch v0.17.0 to optional dependencies.
```

or add it manually to the `counter/Cargo.toml` file:

```toml
[dependencies]
cw-orch = {version = "0.16.0", optional = true } # Latest version at time of writing
cw-orch = {version = "0.17.0", optional = true } # Latest version at time of writing
```

We add `cw-orch` as an optional dependency to ensure that it is not included in the wasm artifact of the contract. This way there are no trust assumptions made about the code added by `cw-orch`, making it safe to use for production contracts.
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch-contract-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-orch-contract-derive"
version = "0.15.0"
version = "0.17.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-orch-core"
version = "0.16.2"
version = "0.17.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch-fns-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-orch-fns-derive"
version = "0.16.1"
version = "0.17.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch-mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-orch-mock"
version = "0.16.3"
version = "0.17.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch-networks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-orch-networks"
version = "0.16.0"
version = "0.17.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/cw-orch-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-orch-traits"
version = "0.16.2"
version = "0.17.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down

0 comments on commit cafeba4

Please sign in to comment.