Skip to content

Commit 60ecfbd

Browse files
committed
Publish 0.17.1
1 parent 2ce919a commit 60ecfbd

File tree

11 files changed

+54
-45
lines changed

11 files changed

+54
-45
lines changed

app-template/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ thiserror = { version = "1.0" }
4141
schemars = "0.8"
4242
cw-asset = { version = "3.0" }
4343

44-
abstract-core = { version = "0.17.0" }
45-
abstract-app = { version = "0.17.0" }
46-
abstract-sdk = { version = "0.17.0" }
44+
abstract-core = { version = "0.17.1" }
45+
abstract-app = { version = "0.17.1" }
46+
abstract-sdk = { version = "0.17.1" }
4747

4848
# Dependencies for interface
49-
abstract-interface = { version = "0.17.0", optional = true }
49+
abstract-interface = { version = "0.17.1", optional = true }
5050
cw-orch = { version = "0.13", optional = true }
5151

5252
[dev-dependencies]
5353
app = { path = ".", features = ["interface"] }
54-
abstract-interface = { version = "0.17.0", features = ["daemon"] }
55-
abstract-testing = { version = "0.17.0" }
56-
abstract-sdk = { version = "0.17.0", features = ["test-utils"] }
54+
abstract-interface = { version = "0.17.1", features = ["daemon"] }
55+
abstract-testing = { version = "0.17.1" }
56+
abstract-sdk = { version = "0.17.1", features = ["test-utils"] }
5757
speculoos = "0.11.0"
5858
semver = "1.0"
5959
dotenv = "0.15.0"

framework/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
### Added
1111

12+
### Changed
13+
14+
### Fixed
15+
16+
## [0.17.1] - 2023-07-26
17+
18+
### Added
19+
1220
- Ability to set admin to native contracts during instantiation
21+
- Added neutron
1322

1423
### Changed
1524

framework/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = ["packages/*", "contracts/native/*", "contracts/account/*", "scripts"]
1212
resolver = "2"
1313

1414
[workspace.package]
15-
version = "0.17.0"
15+
version = "0.17.1"
1616
authors = [
1717
"CyberHoward <[email protected]>",
1818
"Riada <[email protected]>",
@@ -52,8 +52,8 @@ tokio = { version = "1.4", features = ["full"] }
5252

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

55-
abstract-adapter = { version = "0.17.0", path = "packages/abstract-adapter" }
56-
abstract-app = { version = "0.17.0", path = "packages/abstract-app" }
55+
abstract-adapter = { version = "0.17.1", path = "packages/abstract-adapter" }
56+
abstract-app = { version = "0.17.1", path = "packages/abstract-app" }
5757

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

68-
abstract-sdk = { version = "0.17.0", path = "packages/abstract-sdk" }
69-
abstract-testing = { version = "0.17.0", path = "packages/abstract-testing" }
70-
abstract-core = { version = "0.17.0", path = "packages/abstract-core" }
68+
abstract-sdk = { version = "0.17.1", path = "packages/abstract-sdk" }
69+
abstract-testing = { version = "0.17.1", path = "packages/abstract-testing" }
70+
abstract-core = { version = "0.17.1", path = "packages/abstract-core" }
7171

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

76-
abstract-adapter-utils = { version = "0.17.0", path = "packages/utils" }
76+
abstract-adapter-utils = { version = "0.17.1", path = "packages/utils" }
7777
abstract-dex-adapter-traits = { path = "packages/dex" }
7878
abstract-staking-adapter-traits = { path = "packages/staking" }
7979

framework/packages/abstract-adapter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "abstract-adapter"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }
@@ -30,7 +30,7 @@ abstract-core = { workspace = true }
3030
abstract-testing = { workspace = true, optional = true }
3131
cw-orch = { workspace = true, optional = true }
3232
# Keep this as a version and update when publishing new versions
33-
abstract-interface = { path = "../../packages/abstract-interface", version = "0.17.0", optional = true }
33+
abstract-interface = { path = "../../packages/abstract-interface", version = "0.17.1", optional = true }
3434

3535
[dev-dependencies]
3636
speculoos = { workspace = true }

framework/packages/abstract-app/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "abstract-app"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "base app contract implementation"
@@ -30,7 +30,7 @@ abstract-core = { workspace = true }
3030
abstract-testing = { workspace = true, optional = true }
3131
cw-orch = { workspace = true, optional = true }
3232
# Keep this as a version and update when publishing new versions
33-
abstract-interface = { path = "../../packages/abstract-interface", version = "0.17.0", optional = true }
33+
abstract-interface = { path = "../../packages/abstract-interface", version = "0.17.1", optional = true }
3434

3535
[dev-dependencies]
3636
cosmwasm-schema = { workspace = true }

framework/packages/abstract-interface/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "abstract-interface"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Abstract deployment helpers with cw-orchestrator"
@@ -30,12 +30,12 @@ serde_json = "1.0.79"
3030
speculoos = { workspace = true }
3131

3232
# Keep these here
33-
module-factory = { package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false, version = "0.17.0" }
34-
account-factory = { package = "abstract-account-factory", path = "../../contracts/native/account-factory", default-features = false, version = "0.17.0" }
35-
ans-host = { package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false, version = "0.17.0" }
36-
version-control = { package = "abstract-version-control", path = "../../contracts/native/version-control", default-features = false, version = "0.17.0" }
37-
proxy = { package = "abstract-proxy", path = "../../contracts/account/proxy", default-features = false, version = "0.17.0" }
38-
manager = { package = "abstract-manager", path = "../../contracts/account/manager", default-features = false, version = "0.17.0" }
33+
module-factory = { package = "abstract-module-factory", path = "../../contracts/native/module-factory", default-features = false, version = "0.17.1" }
34+
account-factory = { package = "abstract-account-factory", path = "../../contracts/native/account-factory", default-features = false, version = "0.17.1" }
35+
ans-host = { package = "abstract-ans-host", path = "../../contracts/native/ans-host", default-features = false, version = "0.17.1" }
36+
version-control = { package = "abstract-version-control", path = "../../contracts/native/version-control", default-features = false, version = "0.17.1" }
37+
proxy = { package = "abstract-proxy", path = "../../contracts/account/proxy", default-features = false, version = "0.17.1" }
38+
manager = { package = "abstract-manager", path = "../../contracts/account/manager", default-features = false, version = "0.17.1" }
3939

4040
[build-dependencies]
4141
serde_json = "1.0.79"

integrations/astroport/packages/abstract-adapter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ full_integration = ["dep:cw20", "dep:cosmwasm-schema", "dep:cw-asset", "dep:cw-u
1616
cosmwasm-std = { version = "1.1" }
1717
abstract-staking-adapter-traits = { path = "../../../../framework/packages/staking" }
1818
abstract-dex-adapter-traits = { path = "../../../../framework/packages/dex" }
19-
abstract-sdk = { version = "0.17.0" }
19+
abstract-sdk = { version = "0.17.1" }
2020

2121

2222
cw20 = { version = "0.15", optional = true }

integrations/astroport/packages/abstract-adapter/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pub const AVAILABLE_CHAINS: &[&str] = abstract_sdk::core::registry::LOCAL_CHAIN;
55
lazy_static::lazy_static! {
66
pub static ref AVAILABLE_CHAINS: Vec<&'static str> = {
77
let mut v = Vec::new();
8-
v.extend_from_slice(abstract_sdk::core::registry::OSMOSIS);
8+
v.extend_from_slice(abstract_sdk::core::registry::NEUTRON);
99
v.extend_from_slice(abstract_sdk::core::registry::TERRA);
1010
v
1111
};

integrations/osmosis/packages/abstract-adapter/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ full_integration = [
1818

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

2525
#Abstract dependencies
2626
cw20 = { version = "0.15", optional = true }
27-
abstract-sdk = { version = "0.17.0", optional = true }
27+
abstract-sdk = { version = "0.17.1", optional = true }
2828
cw-asset = { version = "3.0.0", optional = true }
2929
cw-utils = { version = "1.0.1", optional = true }
3030
osmosis-std = { path = "../osmosis-std/", optional = true }

integrations/wyndex/packages/wyndex-adapter/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ full_integration = [
2323
[dependencies]
2424
cosmwasm-std = { workspace = true }
2525

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

3030
# Optional
3131
wyndex = { path = "../wyndex/", optional = true }

modules/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ members = [
1616
resolver = "2"
1717

1818
[workspace.package]
19-
version = "0.17.0"
19+
version = "0.17.1"
2020
authors = [
2121
"CyberHoward <[email protected]>",
2222
"Riada <[email protected]>",
@@ -58,14 +58,14 @@ tokio = { version = "1.4", features = ["full"] }
5858

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

61-
abstract-interface = { version = "0.17.0" }
62-
abstract-adapter = { version = "0.17.0" }
63-
abstract-app = { version = "0.17.0" }
64-
abstract-sdk = { version = "0.17.0" }
65-
abstract-testing = { version = "0.17.0" }
66-
abstract-core = { version = "0.17.0" }
67-
abstract-macros = { version = "0.17.0" }
68-
abstract-ica = { version = "0.17.0" }
61+
abstract-interface = { version = "0.17.1" }
62+
abstract-adapter = { version = "0.17.1" }
63+
abstract-app = { version = "0.17.1" }
64+
abstract-sdk = { version = "0.17.1" }
65+
abstract-testing = { version = "0.17.1" }
66+
abstract-core = { version = "0.17.1" }
67+
abstract-macros = { version = "0.17.1" }
68+
abstract-ica = { version = "0.17.1" }
6969

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

0 commit comments

Comments
 (0)