Skip to content

Commit

Permalink
Merge branch 'main' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberHoward authored Aug 14, 2024
2 parents a094824 + 2c6d0f5 commit d2799db
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ edition = "2021"
homepage = "https://larry.engineer"
repository = "https://github.com/larry0x/cw-plus-plus"
license = "Apache-2.0"
version = "2.0.0"
keywords = ["cosmos", "cosmwasm"]

[workspace.dependencies]
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@

A collection of [CosmWasm][1] utilities and helper libraries.

> These packages are compatible with CosmWasm `1.x` for all versions `<2.0`.
## Contents

| Crate | Version | Description |
| ------------------------ | ------- | ----------------------------------------------------------------------- |
| [cw-address-like][2] | v1.0.4 | A trait that marks unchecked or checked address strings |
| [cw-item-set][3] | v0.7.1 | Set of non-duplicate items for storage |
| [cw-optional-indexes][4] | v0.1.1 | Index types for `IndexedMap` where an item may or may not have an index |
| [cw-ownable][5] | v0.6.0 | Utility for controlling contract ownership |
| [cw-paginate][6] | v0.2.1 | Helper function for interating maps |
| [cw-address-like][2] | v2.0.0 | A trait that marks unchecked or checked address strings |
| [cw-item-set][3] | v2.0.0 | Set of non-duplicate items for storage |
| [cw-optional-indexes][4] | v2.0.0 | Index types for `IndexedMap` where an item may or may not have an index |
| [cw-ownable][5] | v2.0.0 | Utility for controlling contract ownership |
| [cw-paginate][6] | v2.0.0 | Helper function for interating maps |

## License

Expand Down
2 changes: 1 addition & 1 deletion packages/address-like/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-address-like"
version = "2.0.4"
version = { workspace = true }
description = "A trait that marks unchecked or checked CosmWasm address strings"
authors = { workspace = true }
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/item-set/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-item-set"
version = "0.8.0"
version = { workspace = true }
description = "Set of non-duplicate items for smart contract store"
authors = { workspace = true }
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/optional-indexes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-optional-indexes"
version = "0.2.0"
version = { workspace = true }
description = "Index types for CosmWasm IndexedMaps where an item may or may not have an index"
authors = { workspace = true }
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/ownable/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-ownable"
version = "0.6.0"
version = { workspace = true }
description = "Utility for controlling ownership of CosmWasm smart contracts"
authors = { workspace = true }
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/paginate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-paginate"
version = "0.3.0"
version = { workspace = true }
description = "Helper function for iterating CosmWasm storage maps with pagination"
authors = [
"Larry Engineer <[email protected]>",
Expand Down

0 comments on commit d2799db

Please sign in to comment.