Skip to content

Commit

Permalink
Publish 0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adairrr committed Jul 26, 2023
1 parent 2ce919a commit 60ecfbd
Show file tree
Hide file tree
Showing 11 changed files with 54 additions and 45 deletions.
14 changes: 7 additions & 7 deletions app-template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ thiserror = { version = "1.0" }
schemars = "0.8"
cw-asset = { version = "3.0" }

abstract-core = { version = "0.17.0" }
abstract-app = { version = "0.17.0" }
abstract-sdk = { version = "0.17.0" }
abstract-core = { version = "0.17.1" }
abstract-app = { version = "0.17.1" }
abstract-sdk = { version = "0.17.1" }

# Dependencies for interface
abstract-interface = { version = "0.17.0", optional = true }
abstract-interface = { version = "0.17.1", optional = true }
cw-orch = { version = "0.13", optional = true }

[dev-dependencies]
app = { path = ".", features = ["interface"] }
abstract-interface = { version = "0.17.0", features = ["daemon"] }
abstract-testing = { version = "0.17.0" }
abstract-sdk = { version = "0.17.0", features = ["test-utils"] }
abstract-interface = { version = "0.17.1", features = ["daemon"] }
abstract-testing = { version = "0.17.1" }
abstract-sdk = { version = "0.17.1", features = ["test-utils"] }
speculoos = "0.11.0"
semver = "1.0"
dotenv = "0.15.0"
Expand Down
9 changes: 9 additions & 0 deletions framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

### Changed

### Fixed

## [0.17.1] - 2023-07-26

### Added

- Ability to set admin to native contracts during instantiation
- Added neutron

### Changed

Expand Down
18 changes: 9 additions & 9 deletions framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = ["packages/*", "contracts/native/*", "contracts/account/*", "scripts"]
resolver = "2"

[workspace.package]
version = "0.17.0"
version = "0.17.1"
authors = [
"CyberHoward <[email protected]>",
"Riada <[email protected]>",
Expand Down Expand Up @@ -52,8 +52,8 @@ tokio = { version = "1.4", features = ["full"] }

## crates in order of publishing ## see docs/Publishing.md

abstract-adapter = { version = "0.17.0", path = "packages/abstract-adapter" }
abstract-app = { version = "0.17.0", path = "packages/abstract-app" }
abstract-adapter = { version = "0.17.1", path = "packages/abstract-adapter" }
abstract-app = { version = "0.17.1", path = "packages/abstract-app" }

# Keep these as path, creates cirular dependency otherwise
# Only need to re-publish all contracts if a re-publish of abstract-interface is required
Expand All @@ -65,15 +65,15 @@ version-control = { package = "abstract-version-control", path = "contracts/nati
proxy = { package = "abstract-proxy", path = "contracts/account/proxy" }
manager = { package = "abstract-manager", path = "contracts/account/manager" }

abstract-sdk = { version = "0.17.0", path = "packages/abstract-sdk" }
abstract-testing = { version = "0.17.0", path = "packages/abstract-testing" }
abstract-core = { version = "0.17.0", path = "packages/abstract-core" }
abstract-sdk = { version = "0.17.1", path = "packages/abstract-sdk" }
abstract-testing = { version = "0.17.1", path = "packages/abstract-testing" }
abstract-core = { version = "0.17.1", path = "packages/abstract-core" }

# These should remain fixed and don't need to be re-published (unless changes are made)
abstract-macros = { version = "0.17.0", path = "packages/abstract-macros" }
abstract-ica = { version = "0.17.0", path = "packages/abstract-ica" }
abstract-macros = { version = "0.17.1", path = "packages/abstract-macros" }
abstract-ica = { version = "0.17.1", path = "packages/abstract-ica" }

abstract-adapter-utils = { version = "0.17.0", path = "packages/utils" }
abstract-adapter-utils = { version = "0.17.1", path = "packages/utils" }
abstract-dex-adapter-traits = { path = "packages/dex" }
abstract-staking-adapter-traits = { path = "packages/staking" }

Expand Down
4 changes: 2 additions & 2 deletions framework/packages/abstract-adapter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abstract-adapter"
version = "0.17.0"
version = "0.17.1"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -30,7 +30,7 @@ abstract-core = { workspace = true }
abstract-testing = { workspace = true, optional = true }
cw-orch = { workspace = true, optional = true }
# Keep this as a version and update when publishing new versions
abstract-interface = { path = "../../packages/abstract-interface", version = "0.17.0", optional = true }
abstract-interface = { path = "../../packages/abstract-interface", version = "0.17.1", optional = true }

[dev-dependencies]
speculoos = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions framework/packages/abstract-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abstract-app"
version = "0.17.0"
version = "0.17.1"
edition = { workspace = true }
license = { workspace = true }
description = "base app contract implementation"
Expand Down Expand Up @@ -30,7 +30,7 @@ abstract-core = { workspace = true }
abstract-testing = { workspace = true, optional = true }
cw-orch = { workspace = true, optional = true }
# Keep this as a version and update when publishing new versions
abstract-interface = { path = "../../packages/abstract-interface", version = "0.17.0", optional = true }
abstract-interface = { path = "../../packages/abstract-interface", version = "0.17.1", optional = true }

[dev-dependencies]
cosmwasm-schema = { workspace = true }
Expand Down
14 changes: 7 additions & 7 deletions framework/packages/abstract-interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abstract-interface"
version = "0.17.0"
version = "0.17.1"
edition = { workspace = true }
license = { workspace = true }
description = "Abstract deployment helpers with cw-orchestrator"
Expand Down Expand Up @@ -30,12 +30,12 @@ serde_json = "1.0.79"
speculoos = { workspace = true }

# Keep these here
module-factory = { package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false, version = "0.17.0" }
account-factory = { package = "abstract-account-factory", path = "../../contracts/native/account-factory", default-features = false, version = "0.17.0" }
ans-host = { package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false, version = "0.17.0" }
version-control = { package = "abstract-version-control", path = "../../contracts/native/version-control", default-features = false, version = "0.17.0" }
proxy = { package = "abstract-proxy", path = "../../contracts/account/proxy", default-features = false, version = "0.17.0" }
manager = { package = "abstract-manager", path = "../../contracts/account/manager", default-features = false, version = "0.17.0" }
module-factory = { package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false, version = "0.17.1" }
account-factory = { package = "abstract-account-factory", path = "../../contracts/native/account-factory", default-features = false, version = "0.17.1" }
ans-host = { package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false, version = "0.17.1" }
version-control = { package = "abstract-version-control", path = "../../contracts/native/version-control", default-features = false, version = "0.17.1" }
proxy = { package = "abstract-proxy", path = "../../contracts/account/proxy", default-features = false, version = "0.17.1" }
manager = { package = "abstract-manager", path = "../../contracts/account/manager", default-features = false, version = "0.17.1" }

[build-dependencies]
serde_json = "1.0.79"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ full_integration = ["dep:cw20", "dep:cosmwasm-schema", "dep:cw-asset", "dep:cw-u
cosmwasm-std = { version = "1.1" }
abstract-staking-adapter-traits = { path = "../../../../framework/packages/staking" }
abstract-dex-adapter-traits = { path = "../../../../framework/packages/dex" }
abstract-sdk = { version = "0.17.0" }
abstract-sdk = { version = "0.17.1" }


cw20 = { version = "0.15", optional = true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub const AVAILABLE_CHAINS: &[&str] = abstract_sdk::core::registry::LOCAL_CHAIN;
lazy_static::lazy_static! {
pub static ref AVAILABLE_CHAINS: Vec<&'static str> = {
let mut v = Vec::new();
v.extend_from_slice(abstract_sdk::core::registry::OSMOSIS);
v.extend_from_slice(abstract_sdk::core::registry::NEUTRON);
v.extend_from_slice(abstract_sdk::core::registry::TERRA);
v
};
Expand Down
8 changes: 4 additions & 4 deletions integrations/osmosis/packages/abstract-adapter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ full_integration = [

[dependencies]
cosmwasm-std = { version = "1.1.2", features = ["stargate"] }
abstract-core = { version = "0.17.0" }
abstract-staking-adapter-traits = { version = "0.17.0", path = "../../../../framework/packages/staking" }
abstract-dex-adapter-traits = { version = "0.17.0", path = "../../../../framework/packages/dex" }
abstract-core = { version = "0.17.1" }
abstract-staking-adapter-traits = { version = "0.17.1", path = "../../../../framework/packages/staking" }
abstract-dex-adapter-traits = { version = "0.17.1", path = "../../../../framework/packages/dex" }

#Abstract dependencies
cw20 = { version = "0.15", optional = true }
abstract-sdk = { version = "0.17.0", optional = true }
abstract-sdk = { version = "0.17.1", optional = true }
cw-asset = { version = "3.0.0", optional = true }
cw-utils = { version = "1.0.1", optional = true }
osmosis-std = { path = "../osmosis-std/", optional = true }
6 changes: 3 additions & 3 deletions integrations/wyndex/packages/wyndex-adapter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ full_integration = [
[dependencies]
cosmwasm-std = { workspace = true }

abstract-sdk = { version = "0.17.0" }
abstract-staking-adapter-traits = { version = "0.17.0", path = "../../../../framework/packages/staking" }
abstract-dex-adapter-traits = { version = "0.17.0", path = "../../../../framework/packages/dex" }
abstract-sdk = { version = "0.17.1" }
abstract-staking-adapter-traits = { version = "0.17.1", path = "../../../../framework/packages/staking" }
abstract-dex-adapter-traits = { version = "0.17.1", path = "../../../../framework/packages/dex" }

# Optional
wyndex = { path = "../wyndex/", optional = true }
Expand Down
18 changes: 9 additions & 9 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.17.0"
version = "0.17.1"
authors = [
"CyberHoward <[email protected]>",
"Riada <[email protected]>",
Expand Down Expand Up @@ -58,14 +58,14 @@ tokio = { version = "1.4", features = ["full"] }

## crates in order of publishing ## see docs/Publishing.md

abstract-interface = { version = "0.17.0" }
abstract-adapter = { version = "0.17.0" }
abstract-app = { version = "0.17.0" }
abstract-sdk = { version = "0.17.0" }
abstract-testing = { version = "0.17.0" }
abstract-core = { version = "0.17.0" }
abstract-macros = { version = "0.17.0" }
abstract-ica = { version = "0.17.0" }
abstract-interface = { version = "0.17.1" }
abstract-adapter = { version = "0.17.1" }
abstract-app = { version = "0.17.1" }
abstract-sdk = { version = "0.17.1" }
abstract-testing = { version = "0.17.1" }
abstract-core = { version = "0.17.1" }
abstract-macros = { version = "0.17.1" }
abstract-ica = { version = "0.17.1" }

abstract-dex-adapter = { path = "./contracts/adapters/dex" }
abstract-adapter-utils = { path = "../framework/packages/utils" }
Expand Down

0 comments on commit 60ecfbd

Please sign in to comment.