diff --git a/CHANGELOG.md b/CHANGELOG.md index b26a8ce..12cad89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.1-beta] - 2023-02-32 + +### Changed + +- On Hub Module instantiation, `info.sender` is now saved as an operator for the contract. ([#73](https://github.com/KompleTeam/komple-framework/pull/73)) + ## [1.1.0-beta] - 2023-02-14 ### Added diff --git a/Cargo.lock b/Cargo.lock index 5eb4068..857abe4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -613,7 +613,7 @@ dependencies = [ [[package]] name = "komple-framework-attribute-permission" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -633,7 +633,7 @@ dependencies = [ [[package]] name = "komple-framework-custom-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -651,7 +651,7 @@ dependencies = [ [[package]] name = "komple-framework-custom-permission" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -668,7 +668,7 @@ dependencies = [ [[package]] name = "komple-framework-fee-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -685,7 +685,7 @@ dependencies = [ [[package]] name = "komple-framework-hub-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -712,7 +712,7 @@ dependencies = [ [[package]] name = "komple-framework-link-permission" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -734,7 +734,7 @@ dependencies = [ [[package]] name = "komple-framework-marketplace-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -758,7 +758,7 @@ dependencies = [ [[package]] name = "komple-framework-merge-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -783,7 +783,7 @@ dependencies = [ [[package]] name = "komple-framework-metadata-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -799,7 +799,7 @@ dependencies = [ [[package]] name = "komple-framework-mint-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -827,7 +827,7 @@ dependencies = [ [[package]] name = "komple-framework-ownership-permission" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -849,7 +849,7 @@ dependencies = [ [[package]] name = "komple-framework-permission-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -867,7 +867,7 @@ dependencies = [ [[package]] name = "komple-framework-token-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -879,7 +879,6 @@ dependencies = [ "cw721", "cw721-base", "komple-framework-metadata-module", - "komple-framework-mint-module", "komple-framework-types", "komple-framework-utils", "komple-framework-whitelist-module", @@ -889,7 +888,7 @@ dependencies = [ [[package]] name = "komple-framework-types" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -897,7 +896,7 @@ dependencies = [ [[package]] name = "komple-framework-utils" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-std", "cw-storage-plus 0.15.1", @@ -911,7 +910,7 @@ dependencies = [ [[package]] name = "komple-framework-whitelist-module" -version = "1.1.0-beta" +version = "1.1.1-beta" dependencies = [ "cosmwasm-schema", "cosmwasm-std", diff --git a/contracts/modules/custom/Cargo.toml b/contracts/modules/custom/Cargo.toml index 24aefe2..371f780 100644 --- a/contracts/modules/custom/Cargo.toml +++ b/contracts/modules/custom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-custom-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used as a template for kickstarting module development in Komple Framework." @@ -54,8 +54,8 @@ cw2 = "1.0.1" schemars = "0.8.10" serde = { version = "1.0.145", default-features = false, features = ["derive"] } thiserror = { version = "1.0.31" } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta" } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta" } [dev-dependencies] cw-multi-test = "0.16.2" diff --git a/contracts/modules/fee/Cargo.toml b/contracts/modules/fee/Cargo.toml index e9672c1..e75628e 100644 --- a/contracts/modules/fee/Cargo.toml +++ b/contracts/modules/fee/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-fee-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for general fee configuration and distribution in Komple Framework." @@ -53,8 +53,8 @@ cosmwasm-schema = "1.1.0" cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["response", "funds"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["response", "funds"] } cw20 = "0.16.0" [dev-dependencies] diff --git a/contracts/modules/hub/Cargo.toml b/contracts/modules/hub/Cargo.toml index ef9431a..7c06fac 100644 --- a/contracts/modules/hub/Cargo.toml +++ b/contracts/modules/hub/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-hub-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for module registry and address resolution in Komple Framework." @@ -53,8 +53,8 @@ cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } cw-utils = "0.15.1" -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["funds"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["funds"] } [dev-dependencies] cw-multi-test = "0.15.1" diff --git a/contracts/modules/hub/src/contract.rs b/contracts/modules/hub/src/contract.rs index 9114182..b7b05d6 100644 --- a/contracts/modules/hub/src/contract.rs +++ b/contracts/modules/hub/src/contract.rs @@ -35,7 +35,7 @@ const MAX_DESCRIPTION_LENGTH: u32 = 512; pub fn instantiate( deps: DepsMut, _env: Env, - _info: MessageInfo, + info: MessageInfo, msg: RegisterMsg, ) -> Result { set_contract_version(deps.storage, CONTRACT_NAME, CONTRACT_VERSION)?; @@ -47,9 +47,11 @@ pub fn instantiate( let data: InstantiateMsg = from_binary(&msg.data.unwrap())?; let admin = deps.api.addr_validate(&msg.admin)?; - let config = Config { admin }; + let config = Config { admin: admin.clone() }; CONFIG.save(deps.storage, &config)?; + OPERATORS.save(deps.storage, &vec![info.sender])?; + if data.hub_info.description.len() > MAX_DESCRIPTION_LENGTH as usize { return Err(ContractError::DescriptionTooLong {}); } diff --git a/contracts/modules/marketplace/Cargo.toml b/contracts/modules/marketplace/Cargo.toml index b9b8d80..98c730a 100644 --- a/contracts/modules/marketplace/Cargo.toml +++ b/contracts/modules/marketplace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-marketplace-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for the second hand sale of tokens in Komple Framework." @@ -52,10 +52,10 @@ cosmwasm-schema = "1.1.0" cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta" } -komple-framework-token-module = { path = "../token", version = "1.1.0-beta", features = ["library"] } -komple-framework-fee-module = { path = "../fee", version = "1.1.0-beta", features = ["library"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta" } +komple-framework-token-module = { path = "../token", version = "1.1.1-beta", features = ["library"] } +komple-framework-fee-module = { path = "../fee", version = "1.1.1-beta", features = ["library"] } cw721-base = { version = "0.15.0", features = ["library"] } cw20 = "0.16.0" diff --git a/contracts/modules/merge/Cargo.toml b/contracts/modules/merge/Cargo.toml index 9e865fc..adf0587 100644 --- a/contracts/modules/merge/Cargo.toml +++ b/contracts/modules/merge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-merge-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for merging multiple tokens and minting a new one in Komple Framework." @@ -52,11 +52,11 @@ cosmwasm-schema = "1.1.0" cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } -komple-framework-token-module = { path = "../token", version = "1.1.0-beta", features = ["library"] } -komple-framework-permission-module = { path = "../permission", version = "1.1.0-beta", features = ["library"] } -komple-framework-mint-module = { path = "../mint", version = "1.1.0-beta", features = ["library"] } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["storage"] } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } +komple-framework-token-module = { path = "../token", version = "1.1.1-beta", features = ["library"] } +komple-framework-permission-module = { path = "../permission", version = "1.1.1-beta", features = ["library"] } +komple-framework-mint-module = { path = "../mint", version = "1.1.1-beta", features = ["library"] } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["storage"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } cw721-base = { version = "0.15.0", features = ["library"] } [dev-dependencies] diff --git a/contracts/modules/metadata/Cargo.toml b/contracts/modules/metadata/Cargo.toml index 1574be3..b6f1c28 100644 --- a/contracts/modules/metadata/Cargo.toml +++ b/contracts/modules/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-metadata-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for keeping metadata information of a collection in Komple Framework." @@ -52,8 +52,8 @@ cosmwasm-schema = "1.1.0" cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["response"] } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["response"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } [dev-dependencies] cw-multi-test = "0.15.1" diff --git a/contracts/modules/mint/Cargo.toml b/contracts/modules/mint/Cargo.toml index 080f0f2..3cb184b 100644 --- a/contracts/modules/mint/Cargo.toml +++ b/contracts/modules/mint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-mint-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for collection management and token minting in Komple Framework." @@ -52,13 +52,13 @@ cosmwasm-schema = "1.1.0" cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } -komple-framework-token-module = { path = "../token", version = "1.1.0-beta", features = ["library"] } -komple-framework-permission-module = { path = "../permission", version = "1.1.0-beta", features = ["library"] } +komple-framework-token-module = { path = "../token", version = "1.1.1-beta", features = ["library"] } +komple-framework-permission-module = { path = "../permission", version = "1.1.1-beta", features = ["library"] } cw-utils = "0.15.1" -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta" } -komple-framework-fee-module = { path = "../fee", version = "1.1.0-beta", features = ["library"] } -komple-framework-whitelist-module = { path = "../whitelist", version = "1.1.0-beta", features = ["library"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta" } +komple-framework-fee-module = { path = "../fee", version = "1.1.1-beta", features = ["library"] } +komple-framework-whitelist-module = { path = "../whitelist", version = "1.1.1-beta", features = ["library"] } cw20 = "0.16.0" [dev-dependencies] diff --git a/contracts/modules/token/tests/helpers/mod.rs b/contracts/modules/mint/tests/helpers/mod.rs similarity index 100% rename from contracts/modules/token/tests/helpers/mod.rs rename to contracts/modules/mint/tests/helpers/mod.rs diff --git a/contracts/modules/token/tests/integration.rs b/contracts/modules/mint/tests/token_integration.rs similarity index 100% rename from contracts/modules/token/tests/integration.rs rename to contracts/modules/mint/tests/token_integration.rs diff --git a/contracts/modules/token/tests/whitelist_integration.rs b/contracts/modules/mint/tests/whitelist_integration.rs similarity index 100% rename from contracts/modules/token/tests/whitelist_integration.rs rename to contracts/modules/mint/tests/whitelist_integration.rs diff --git a/contracts/modules/permission/Cargo.toml b/contracts/modules/permission/Cargo.toml index 8d05c1a..a9167a2 100644 --- a/contracts/modules/permission/Cargo.toml +++ b/contracts/modules/permission/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-permission-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for permission registry and execute/query message execution in front of module operations in Komple Framework." @@ -52,8 +52,8 @@ cosmwasm-schema = "1.1.0" cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["storage"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["storage"] } cw-utils = "0.15.1" [dev-dependencies] diff --git a/contracts/modules/token/Cargo.toml b/contracts/modules/token/Cargo.toml index ab5ee3f..64992b9 100644 --- a/contracts/modules/token/Cargo.toml +++ b/contracts/modules/token/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-token-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for collection configuration and token management in Komple Framework." @@ -54,12 +54,11 @@ cw2 = "0.15.1" thiserror = { version = "1.0.31" } cw721 = "0.15.0" cw721-base = { version = "0.15.0", features = ["library"] } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["response", "storage"] } -komple-framework-metadata-module = { path = "../metadata", version = "1.1.0-beta", features = ["library"] } -komple-framework-whitelist-module = { path = "../whitelist", version = "1.1.0-beta", features = ["library"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["response", "storage"] } +komple-framework-metadata-module = { path = "../metadata", version = "1.1.1-beta", features = ["library"] } +komple-framework-whitelist-module = { path = "../whitelist", version = "1.1.1-beta", features = ["library"] } cw-utils = "0.15.1" [dev-dependencies] cw-multi-test = "0.15.1" -komple-framework-mint-module = { path = "../mint", features = ["library"] } diff --git a/contracts/modules/whitelist/Cargo.toml b/contracts/modules/whitelist/Cargo.toml index a9d60d7..e66d1a2 100644 --- a/contracts/modules/whitelist/Cargo.toml +++ b/contracts/modules/whitelist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-whitelist-module" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for whitelist management for collections in Komple Framework." @@ -53,8 +53,8 @@ cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } cw-utils = "0.15.1" -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["response"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["response"] } [dev-dependencies] cw-multi-test = "0.15.1" diff --git a/contracts/permissions/attribute/Cargo.toml b/contracts/permissions/attribute/Cargo.toml index 0428d57..94941ac 100644 --- a/contracts/permissions/attribute/Cargo.toml +++ b/contracts/permissions/attribute/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-attribute-permission" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for making attribute level comparisons and checks in Komple Framework." @@ -51,9 +51,9 @@ cosmwasm-schema = "1.1.0" cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["response", "storage"] } -komple-framework-metadata-module = { path = "../../modules/metadata", version = "1.1.0-beta", features = ["library"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["response", "storage"] } +komple-framework-metadata-module = { path = "../../modules/metadata", version = "1.1.1-beta", features = ["library"] } [dev-dependencies] cw-multi-test = "0.15.1" diff --git a/contracts/permissions/custom/Cargo.toml b/contracts/permissions/custom/Cargo.toml index 76356bc..8fd107e 100644 --- a/contracts/permissions/custom/Cargo.toml +++ b/contracts/permissions/custom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-custom-permission" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used as a template for kickstarting permission development in Komple Framework." @@ -53,8 +53,8 @@ cw2 = "1.0.1" schemars = "0.8.10" serde = { version = "1.0.145", default-features = false, features = ["derive"] } thiserror = { version = "1.0.31" } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta" } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta" } [dev-dependencies] cw-multi-test = "0.16.2" diff --git a/contracts/permissions/link/Cargo.toml b/contracts/permissions/link/Cargo.toml index 6f9e8f1..3d49f6f 100644 --- a/contracts/permissions/link/Cargo.toml +++ b/contracts/permissions/link/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-link-permission" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used for checking the linked collections of a collection in Komple Framework." @@ -53,8 +53,8 @@ cw2 = "0.15.1" schemars = "0.8.10" serde = { version = "1.0.145", default-features = false, features = ["derive"] } thiserror = { version = "1.0.31" } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["response", "storage"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["response", "storage"] } [dev-dependencies] cw-multi-test = "0.15.1" diff --git a/contracts/permissions/ownership/Cargo.toml b/contracts/permissions/ownership/Cargo.toml index d1d3631..741ef93 100644 --- a/contracts/permissions/ownership/Cargo.toml +++ b/contracts/permissions/ownership/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-ownership-permission" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Contract used to check the ownership of an user for a token in Komple Framework." @@ -51,8 +51,8 @@ cosmwasm-schema = "1.1.0" cw-storage-plus = "0.15.1" cw2 = "0.15.1" thiserror = { version = "1.0.31" } -komple-framework-types = { path = "../../../packages/types", version = "1.1.0-beta" } -komple-framework-utils = { path = "../../../packages/utils", version = "1.1.0-beta", features = ["response", "storage"] } +komple-framework-types = { path = "../../../packages/types", version = "1.1.1-beta" } +komple-framework-utils = { path = "../../../packages/utils", version = "1.1.1-beta", features = ["response", "storage"] } [dev-dependencies] cw-multi-test = "0.15.1" diff --git a/packages/types/Cargo.toml b/packages/types/Cargo.toml index 9aed750..ebbe0ec 100644 --- a/packages/types/Cargo.toml +++ b/packages/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-types" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Package used for type definitions in Komple Framework." diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index f4f2922..6e0a0c5 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komple-framework-utils" -version = "1.1.0-beta" +version = "1.1.1-beta" authors = ["findolor "] edition = "2018" description = "Package used for utility methods in Komple Framework." @@ -26,7 +26,7 @@ storage = [ [dependencies] cosmwasm-std = { version = "1.1.0" } -komple-framework-types = { path = "../types", version = "1.1.0-beta", optional = true } +komple-framework-types = { path = "../types", version = "1.1.1-beta", optional = true } thiserror = "1.0.30" cw721-base = { version = "0.15.0", features = ["library"], optional = true } schemars = { version = "0.8.8", optional = true }