diff --git a/Cargo.toml b/Cargo.toml index 864705ca9..50b079db6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ exclude = [ [package] name = "brush" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2018" diff --git a/contracts/Cargo.toml b/contracts/Cargo.toml index b9d395135..f229601ae 100644 --- a/contracts/Cargo.toml +++ b/contracts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contracts" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/contracts/derive/Cargo.toml b/contracts/derive/Cargo.toml index be0af4e71..d6f2599bf 100644 --- a/contracts/derive/Cargo.toml +++ b/contracts/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/docs/docs/smart-contracts/PSP1155/psp1155.md b/docs/docs/smart-contracts/PSP1155/psp1155.md index 8530aac65..2d0a3238c 100644 --- a/docs/docs/smart-contracts/PSP1155/psp1155.md +++ b/docs/docs/smart-contracts/PSP1155/psp1155.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of PSP1155 via `brush` feature. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp1155"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp1155"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/PSP22/Extensions/capped.md b/docs/docs/smart-contracts/PSP22/Extensions/capped.md index 91341c5c2..12e7b4328 100644 --- a/docs/docs/smart-contracts/PSP22/Extensions/capped.md +++ b/docs/docs/smart-contracts/PSP22/Extensions/capped.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of PSP22 via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/PSP22/Extensions/pausable.md b/docs/docs/smart-contracts/PSP22/Extensions/pausable.md index 8307791f8..3b353adc2 100644 --- a/docs/docs/smart-contracts/PSP22/Extensions/pausable.md +++ b/docs/docs/smart-contracts/PSP22/Extensions/pausable.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of PSP22 and Pausable via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22", "pausable"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22", "pausable"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/PSP22/Extensions/wrapper.md b/docs/docs/smart-contracts/PSP22/Extensions/wrapper.md index 6a6bd1650..496a8576c 100644 --- a/docs/docs/smart-contracts/PSP22/Extensions/wrapper.md +++ b/docs/docs/smart-contracts/PSP22/Extensions/wrapper.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of PSP22 via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/PSP22/Utils/token-timelock.md b/docs/docs/smart-contracts/PSP22/Utils/token-timelock.md index b640aa0f5..ecf6a9847 100644 --- a/docs/docs/smart-contracts/PSP22/Utils/token-timelock.md +++ b/docs/docs/smart-contracts/PSP22/Utils/token-timelock.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of PSP22 via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/PSP22/psp22.md b/docs/docs/smart-contracts/PSP22/psp22.md index d149027c3..5edaee9ab 100644 --- a/docs/docs/smart-contracts/PSP22/psp22.md +++ b/docs/docs/smart-contracts/PSP22/psp22.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of PSP22 via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp22"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/PSP34/Extensions/metadata.md b/docs/docs/smart-contracts/PSP34/Extensions/metadata.md index 00fd26a37..88d0dbcfc 100644 --- a/docs/docs/smart-contracts/PSP34/Extensions/metadata.md +++ b/docs/docs/smart-contracts/PSP34/Extensions/metadata.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of PSP34 via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp34"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp34"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/PSP34/psp34.md b/docs/docs/smart-contracts/PSP34/psp34.md index 7db66ada6..4f5ca6737 100644 --- a/docs/docs/smart-contracts/PSP34/psp34.md +++ b/docs/docs/smart-contracts/PSP34/psp34.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of PSP34 via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp34"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["psp34"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/access-control.md b/docs/docs/smart-contracts/access-control.md index 7d9de9317..f81935e1f 100644 --- a/docs/docs/smart-contracts/access-control.md +++ b/docs/docs/smart-contracts/access-control.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of Access Control via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["access_control"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["access_control"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/diamond.md b/docs/docs/smart-contracts/diamond.md index c0a09be9b..b4847a059 100644 --- a/docs/docs/smart-contracts/diamond.md +++ b/docs/docs/smart-contracts/diamond.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of Diamond Standard via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["diamond"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["diamond"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/overview.md b/docs/docs/smart-contracts/overview.md index 4be6300a1..b767f1463 100644 --- a/docs/docs/smart-contracts/overview.md +++ b/docs/docs/smart-contracts/overview.md @@ -23,7 +23,7 @@ scale = { package = "parity-scale-codec", version = "3", default-features = fals scale-info = { version = "2", default-features = false, features = ["derive"], optional = true } # Brush dependency -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false } [features] default = ["std"] diff --git a/docs/docs/smart-contracts/ownable.md b/docs/docs/smart-contracts/ownable.md index 79e024bde..ec800f569 100644 --- a/docs/docs/smart-contracts/ownable.md +++ b/docs/docs/smart-contracts/ownable.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of Ownable via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["ownable"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["ownable"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/pausable.md b/docs/docs/smart-contracts/pausable.md index 3b51282bd..e5f70fc89 100644 --- a/docs/docs/smart-contracts/pausable.md +++ b/docs/docs/smart-contracts/pausable.md @@ -12,7 +12,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of Pausable via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["pausable"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["pausable"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/payment-splitter.md b/docs/docs/smart-contracts/payment-splitter.md index fc80ef103..709d93e65 100644 --- a/docs/docs/smart-contracts/payment-splitter.md +++ b/docs/docs/smart-contracts/payment-splitter.md @@ -12,7 +12,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of Payment Splitter via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["payment_splitter"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["payment_splitter"] } # payment-splitter uses dividing inside, so your version of rust can require you to disable check overflow. [profile.dev] diff --git a/docs/docs/smart-contracts/proxy.md b/docs/docs/smart-contracts/proxy.md index c0c376915..0512d054d 100644 --- a/docs/docs/smart-contracts/proxy.md +++ b/docs/docs/smart-contracts/proxy.md @@ -11,7 +11,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of Proxy via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["proxy"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["proxy"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/docs/docs/smart-contracts/reentrancy-guard.md b/docs/docs/smart-contracts/reentrancy-guard.md index 335826f3f..450619024 100644 --- a/docs/docs/smart-contracts/reentrancy-guard.md +++ b/docs/docs/smart-contracts/reentrancy-guard.md @@ -20,7 +20,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of Reentrancy Guard via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["reentrancy_guard"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["reentrancy_guard"] } ``` ### Step 2: Add imports diff --git a/docs/docs/smart-contracts/timelock-controller.md b/docs/docs/smart-contracts/timelock-controller.md index f2c3c0022..9fd08e1c1 100644 --- a/docs/docs/smart-contracts/timelock-controller.md +++ b/docs/docs/smart-contracts/timelock-controller.md @@ -12,7 +12,7 @@ Include `brush` as dependency in the cargo file or you can use [default `Cargo.t After you need to enable default implementation of Timelock Controller via `brush` features. ```toml -brush = { tag = "v1.6.0", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["timelock_controller"] } +brush = { tag = "v1.6.1", git = "https://github.com/Supercolony-net/openbrush-contracts", default-features = false, features = ["timelock_controller"] } ``` ## Step 2: Add imports and enable unstable feature diff --git a/example_project_structure/Cargo.toml b/example_project_structure/Cargo.toml index 008d42e50..6d0474f07 100644 --- a/example_project_structure/Cargo.toml +++ b/example_project_structure/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lending_project" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/example_project_structure/contracts/lending/Cargo.toml b/example_project_structure/contracts/lending/Cargo.toml index 3986a469e..cf21b475e 100644 --- a/example_project_structure/contracts/lending/Cargo.toml +++ b/example_project_structure/contracts/lending/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lending_contract" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/example_project_structure/contracts/loan/Cargo.toml b/example_project_structure/contracts/loan/Cargo.toml index d0734a6d1..d8b1bdbff 100644 --- a/example_project_structure/contracts/loan/Cargo.toml +++ b/example_project_structure/contracts/loan/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loan_contract" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/example_project_structure/contracts/shares/Cargo.toml b/example_project_structure/contracts/shares/Cargo.toml index 70978f946..931c2f703 100644 --- a/example_project_structure/contracts/shares/Cargo.toml +++ b/example_project_structure/contracts/shares/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shares_contract" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/example_project_structure/contracts/stable_coin/Cargo.toml b/example_project_structure/contracts/stable_coin/Cargo.toml index d5fc53ffa..badcb76dd 100644 --- a/example_project_structure/contracts/stable_coin/Cargo.toml +++ b/example_project_structure/contracts/stable_coin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stable_coin_contract" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/example_project_structure/derive/Cargo.toml b/example_project_structure/derive/Cargo.toml index fd296b29c..ebd2490bf 100644 --- a/example_project_structure/derive/Cargo.toml +++ b/example_project_structure/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lending_project_derive" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/access_control/Cargo.toml b/examples/access_control/Cargo.toml index ca57c6cb2..5cd71d2aa 100644 --- a/examples/access_control/Cargo.toml +++ b/examples/access_control/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_access_control" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/diamond/Cargo.toml b/examples/diamond/Cargo.toml index 8276b9d05..c4693b417 100644 --- a/examples/diamond/Cargo.toml +++ b/examples/diamond/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_diamond" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/diamond/diamond_caller/Cargo.toml b/examples/diamond/diamond_caller/Cargo.toml index 4e08e0dee..c09e8bbe5 100644 --- a/examples/diamond/diamond_caller/Cargo.toml +++ b/examples/diamond/diamond_caller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diamond_caller" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/diamond/psp22_facet_v1/Cargo.toml b/examples/diamond/psp22_facet_v1/Cargo.toml index ee14dc738..37695d552 100644 --- a/examples/diamond/psp22_facet_v1/Cargo.toml +++ b/examples/diamond/psp22_facet_v1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_facet_v1" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/diamond/psp22_facet_v2/Cargo.toml b/examples/diamond/psp22_facet_v2/Cargo.toml index 4d047c40d..a40642984 100644 --- a/examples/diamond/psp22_facet_v2/Cargo.toml +++ b/examples/diamond/psp22_facet_v2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_facet_v2" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/diamond/psp22_metadata_facet/Cargo.toml b/examples/diamond/psp22_metadata_facet/Cargo.toml index da472b0d9..17955241e 100644 --- a/examples/diamond/psp22_metadata_facet/Cargo.toml +++ b/examples/diamond/psp22_metadata_facet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_metadata_facet" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/ownable/Cargo.toml b/examples/ownable/Cargo.toml index e9f9d51c0..54becbca5 100644 --- a/examples/ownable/Cargo.toml +++ b/examples/ownable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_ownable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/pausable/Cargo.toml b/examples/pausable/Cargo.toml index aba2e32b6..29174a445 100644 --- a/examples/pausable/Cargo.toml +++ b/examples/pausable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_pausable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/payment_splitter/Cargo.toml b/examples/payment_splitter/Cargo.toml index ed787ea0c..e7218e7a1 100644 --- a/examples/payment_splitter/Cargo.toml +++ b/examples/payment_splitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_payment_splitter" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/proxy/Cargo.toml b/examples/proxy/Cargo.toml index 6685f726d..0f69e17dc 100644 --- a/examples/proxy/Cargo.toml +++ b/examples/proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_proxy" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/proxy/psp22_metadata_upgradeable/Cargo.toml b/examples/proxy/psp22_metadata_upgradeable/Cargo.toml index 885ccb8f2..747398ed7 100644 --- a/examples/proxy/psp22_metadata_upgradeable/Cargo.toml +++ b/examples/proxy/psp22_metadata_upgradeable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_metadata_upgradeable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/proxy/psp22_upgradeable/Cargo.toml b/examples/proxy/psp22_upgradeable/Cargo.toml index 81cd3e180..68ae7d54b 100644 --- a/examples/proxy/psp22_upgradeable/Cargo.toml +++ b/examples/proxy/psp22_upgradeable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_upgradeable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp1155/Cargo.toml b/examples/psp1155/Cargo.toml index 138096cc0..9777e73b1 100644 --- a/examples/psp1155/Cargo.toml +++ b/examples/psp1155/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp1155" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp1155_extensions/burnable/Cargo.toml b/examples/psp1155_extensions/burnable/Cargo.toml index c74cd3f86..edec07ade 100644 --- a/examples/psp1155_extensions/burnable/Cargo.toml +++ b/examples/psp1155_extensions/burnable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp1155_burnable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp1155_extensions/metadata/Cargo.toml b/examples/psp1155_extensions/metadata/Cargo.toml index 7518b3acd..7430220da 100644 --- a/examples/psp1155_extensions/metadata/Cargo.toml +++ b/examples/psp1155_extensions/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp1155_metadata" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp1155_extensions/mintable/Cargo.toml b/examples/psp1155_extensions/mintable/Cargo.toml index 6b1312205..9a84ec524 100644 --- a/examples/psp1155_extensions/mintable/Cargo.toml +++ b/examples/psp1155_extensions/mintable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp1155_mintable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22/Cargo.toml b/examples/psp22/Cargo.toml index a85510353..438c34dad 100644 --- a/examples/psp22/Cargo.toml +++ b/examples/psp22/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22_extensions/burnable/Cargo.toml b/examples/psp22_extensions/burnable/Cargo.toml index e4a831af7..254bcabbc 100644 --- a/examples/psp22_extensions/burnable/Cargo.toml +++ b/examples/psp22_extensions/burnable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_burnable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22_extensions/capped/Cargo.toml b/examples/psp22_extensions/capped/Cargo.toml index 6d2625054..c225f8a30 100644 --- a/examples/psp22_extensions/capped/Cargo.toml +++ b/examples/psp22_extensions/capped/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_capped" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22_extensions/flashmint/Cargo.toml b/examples/psp22_extensions/flashmint/Cargo.toml index cddf3b5d3..7077df33d 100644 --- a/examples/psp22_extensions/flashmint/Cargo.toml +++ b/examples/psp22_extensions/flashmint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_flashmint" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22_extensions/metadata/Cargo.toml b/examples/psp22_extensions/metadata/Cargo.toml index 956246bfe..483684cea 100644 --- a/examples/psp22_extensions/metadata/Cargo.toml +++ b/examples/psp22_extensions/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_metadata" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22_extensions/mintable/Cargo.toml b/examples/psp22_extensions/mintable/Cargo.toml index ed81dd066..d478faad9 100644 --- a/examples/psp22_extensions/mintable/Cargo.toml +++ b/examples/psp22_extensions/mintable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_mintable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22_extensions/pausable/Cargo.toml b/examples/psp22_extensions/pausable/Cargo.toml index 6ab687c50..05ca38706 100644 --- a/examples/psp22_extensions/pausable/Cargo.toml +++ b/examples/psp22_extensions/pausable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_pausable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22_extensions/wrapper/Cargo.toml b/examples/psp22_extensions/wrapper/Cargo.toml index 5e94c4f87..ba91ea830 100644 --- a/examples/psp22_extensions/wrapper/Cargo.toml +++ b/examples/psp22_extensions/wrapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_wrapper" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp22_utils/token_timelock/Cargo.toml b/examples/psp22_utils/token_timelock/Cargo.toml index 0ad6388da..92546c748 100644 --- a/examples/psp22_utils/token_timelock/Cargo.toml +++ b/examples/psp22_utils/token_timelock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp22_token_timelock" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp34/Cargo.toml b/examples/psp34/Cargo.toml index 238bb6180..bffd17876 100644 --- a/examples/psp34/Cargo.toml +++ b/examples/psp34/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp34" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp34_extensions/burnable/Cargo.toml b/examples/psp34_extensions/burnable/Cargo.toml index ae50e1837..33c602f03 100644 --- a/examples/psp34_extensions/burnable/Cargo.toml +++ b/examples/psp34_extensions/burnable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp34_burnable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp34_extensions/enumerable/Cargo.toml b/examples/psp34_extensions/enumerable/Cargo.toml index 11b697262..edb02902c 100644 --- a/examples/psp34_extensions/enumerable/Cargo.toml +++ b/examples/psp34_extensions/enumerable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp34_enumerable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp34_extensions/metadata/Cargo.toml b/examples/psp34_extensions/metadata/Cargo.toml index 199564d26..a1bfe7177 100644 --- a/examples/psp34_extensions/metadata/Cargo.toml +++ b/examples/psp34_extensions/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp34_metadata" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/psp34_extensions/mintable/Cargo.toml b/examples/psp34_extensions/mintable/Cargo.toml index a2605af8d..036d88fbb 100644 --- a/examples/psp34_extensions/mintable/Cargo.toml +++ b/examples/psp34_extensions/mintable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_psp34_mintable" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/reentrancy_guard/Cargo.toml b/examples/reentrancy_guard/Cargo.toml index 71676a9c9..25aed6558 100644 --- a/examples/reentrancy_guard/Cargo.toml +++ b/examples/reentrancy_guard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/reentrancy_guard/contracts/flip_on_me/Cargo.toml b/examples/reentrancy_guard/contracts/flip_on_me/Cargo.toml index 7d86d0331..e11d26b6f 100644 --- a/examples/reentrancy_guard/contracts/flip_on_me/Cargo.toml +++ b/examples/reentrancy_guard/contracts/flip_on_me/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flip_on_me" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/reentrancy_guard/contracts/flipper/Cargo.toml b/examples/reentrancy_guard/contracts/flipper/Cargo.toml index bfd10d886..087515293 100644 --- a/examples/reentrancy_guard/contracts/flipper/Cargo.toml +++ b/examples/reentrancy_guard/contracts/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_flipper_guard" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/examples/timelock_controller/Cargo.toml b/examples/timelock_controller/Cargo.toml index 16e989ddd..ff7ab4d7c 100644 --- a/examples/timelock_controller/Cargo.toml +++ b/examples/timelock_controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "my_timelock_controller" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/mock/flash-borrower/Cargo.toml b/mock/flash-borrower/Cargo.toml index 651b9f657..dbe0cc798 100644 --- a/mock/flash-borrower/Cargo.toml +++ b/mock/flash-borrower/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flash_borrower" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/mock/psp1155-receiver/Cargo.toml b/mock/psp1155-receiver/Cargo.toml index 445dc0987..ff5aabc1e 100644 --- a/mock/psp1155-receiver/Cargo.toml +++ b/mock/psp1155-receiver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psp1155_receiver" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/mock/psp22-receiver/Cargo.toml b/mock/psp22-receiver/Cargo.toml index 49aaceddc..ee1a1f53b 100644 --- a/mock/psp22-receiver/Cargo.toml +++ b/mock/psp22-receiver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psp22_receiver" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/mock/psp34-receiver/Cargo.toml b/mock/psp34-receiver/Cargo.toml index b560ebc51..6c293af1b 100644 --- a/mock/psp34-receiver/Cargo.toml +++ b/mock/psp34-receiver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psp34_receiver" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/utils/brush_derive/Cargo.toml b/utils/brush_derive/Cargo.toml index 7c1e96156..4e1e4d291 100644 --- a/utils/brush_derive/Cargo.toml +++ b/utils/brush_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "brush_derive" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/utils/brush_lang/Cargo.toml b/utils/brush_lang/Cargo.toml index 52b87b055..91149cf43 100644 --- a/utils/brush_lang/Cargo.toml +++ b/utils/brush_lang/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "brush_lang" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021" diff --git a/utils/brush_lang/proc_macros/Cargo.toml b/utils/brush_lang/proc_macros/Cargo.toml index f507d1ec4..f865ad610 100644 --- a/utils/brush_lang/proc_macros/Cargo.toml +++ b/utils/brush_lang/proc_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proc_macros" -version = "1.6.0" +version = "1.6.1" authors = ["Supercolony "] edition = "2021"