Skip to content

Commit

Permalink
Update to osmosis v25 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
shapeshed authored May 17, 2024
1 parent 00a3f9d commit 74ad02f
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 47 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.0] - 2014-05-17

### Added

- Update libs to support osmosis v25

### Changed

- Pass deps to validate in Config

## [0.4.1] - 2014-05-10

Expand Down Expand Up @@ -139,3 +148,4 @@ and this project adheres to
[0.3.1]: https://github.com/margined-protocol/vaultenator/0.3.0...0.3.1
[0.4.0]: https://github.com/margined-protocol/vaultenator/0.3.1...0.4.0
[0.4.1]: https://github.com/margined-protocol/vaultenator/0.4.0...0.4.1
[0.5.0]: https://github.com/margined-protocol/vaultenator/0.4.1...0.5.0
83 changes: 40 additions & 43 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"
repository = "https://github.com/margined-protocol/vaultenator"
resolver = "2"
rust-version = "1.77.2"
version = "0.4.1"
version = "0.5.0"

[lib]
crate-type = ["cdylib", "rlib"]
Expand All @@ -29,10 +29,10 @@ cw-storage-plus = "1.2.0"
cw-utils = "1.0.3"
cw-vault-standard = "0.3.3"
cw2 = "1.1.2"
osmosis-std = "0.24.0"
osmosis-std = "0.25.0"
serde = "1.0.200"
serde_json = "1.0.115"
thiserror = "1.0.57"

[dev-dependencies]
osmosis-test-tube = "24.0.1"
osmosis-test-tube = "25.0.0"
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ pub trait Configure: Serialize + DeserializeOwned + Sized {

fn update_strategy_denom(&mut self, denom: String);

fn validate(&self) -> Result<(), ContractError>;
fn validate(&self, deps: &mut DepsMut) -> Result<(), ContractError>;
}

0 comments on commit 74ad02f

Please sign in to comment.