Skip to content

Commit

Permalink
Merge pull request #75 from osmosis-labs/prep-0.3.0-final
Browse files Browse the repository at this point in the history
Prep 0.3.0 release
  • Loading branch information
ethanfrey committed Jun 27, 2023
2 parents 1494152 + fa3a31f commit 9f567ff
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[workspace.package]
edition = "2021"
version = "0.3.0-beta.2"
version = "0.3.0"
license = "MIT"
repository = "https://github.com/osmosis-labs/mesh-security"

Expand Down
4 changes: 2 additions & 2 deletions contracts/consumer/converter/src/ibc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ use mesh_apis::ibc::{
use crate::{contract::ConverterContract, error::ContractError};

/// This is the maximum version of the Mesh Security protocol that we support
const SUPPORTED_IBC_PROTOCOL_VERSION: &str = "1.0.0";
const SUPPORTED_IBC_PROTOCOL_VERSION: &str = "0.10.0";
/// This is the minimum version that we are compatible with
const MIN_IBC_PROTOCOL_VERSION: &str = "1.0.0";
const MIN_IBC_PROTOCOL_VERSION: &str = "0.10.0";

// IBC specific state
const IBC_CHANNEL: Item<IbcChannel> = Item::new("ibc_channel");
Expand Down
4 changes: 2 additions & 2 deletions contracts/provider/external-staking/src/ibc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ use crate::error::ContractError;
use crate::msg::AuthorizedEndpoint;

/// This is the maximum version of the Mesh Security protocol that we support
const SUPPORTED_IBC_PROTOCOL_VERSION: &str = "1.0.0";
const SUPPORTED_IBC_PROTOCOL_VERSION: &str = "0.10.0";
/// This is the minimum version that we are compatible with
const MIN_IBC_PROTOCOL_VERSION: &str = "1.0.0";
const MIN_IBC_PROTOCOL_VERSION: &str = "0.10.0";

// IBC specific state
pub const AUTH_ENDPOINT: Item<AuthorizedEndpoint> = Item::new("auth_endpoint");
Expand Down

0 comments on commit 9f567ff

Please sign in to comment.