git.delta.rocks / unique-network / refs/commits / 0ade15e6efe1

difftreelog

docs and bump versions

Trubnikov Sergey2022-12-16parent: #1fe93b2.patch.diff
in: master

6 files changed

modifiedCargo.lockdiffbeforeafterboth
63286328
6329[[package]]6329[[package]]
6330name = "pallet-nonfungible"6330name = "pallet-nonfungible"
6331version = "0.1.9"6331version = "0.1.11"
6332dependencies = [6332dependencies = [
6333 "ethereum 0.14.0",6333 "ethereum 0.14.0",
6334 "evm-coder",6334 "evm-coder",
64876487
6488[[package]]6488[[package]]
6489name = "pallet-refungible"6489name = "pallet-refungible"
6490version = "0.2.8"6490version = "0.2.10"
6491dependencies = [6491dependencies = [
6492 "derivative",6492 "derivative",
6493 "ethereum 0.14.0",6493 "ethereum 0.14.0",
modifiedpallets/common/src/eth.rsdiffbeforeafterboth
163 TokenOwner,163 TokenOwner,
164}164}
165165
166/// Ethereum representation of TokenPermissions (see [`up_data_structs::PropertyPermission`]) fields as an enumeration.
166#[derive(AbiCoder, Copy, Clone, Default, Debug)]167#[derive(AbiCoder, Copy, Clone, Default, Debug)]
167#[repr(u8)]168#[repr(u8)]
168pub enum EthTokenPermissions {169pub enum EthTokenPermissions {
170 /// Permission to change the property and property permission. See [`up_data_structs::PropertyPermission::mutable`]
169 #[default]171 #[default]
170 Mutable,172 Mutable,
173
174 /// Change permission for the collection administrator. See [`up_data_structs::PropertyPermission::token_owner`]
171 TokenOwner,175 TokenOwner,
176
177 /// Permission to change the property for the owner of the token. See [`up_data_structs::PropertyPermission::collection_admin`]
172 CollectionAdmin,178 CollectionAdmin,
173}179}
174180
modifiedpallets/nonfungible/CHANGELOG.mddiffbeforeafterboth
44
5<!-- bureaucrate goes here -->5<!-- bureaucrate goes here -->
66
7## [0.1.11] - 2022-12-16
8
9### Added
10
11- The function `tokenPropertyPermissions` and `setTokenPropertyPermissions` to `TokenProperties` interface.
12
13### Changed
14
15- Hide `setTokenPropertyPermission` function in `TokenProperties` interface.
16
7## [0.1.10] - 2022-11-1817## [0.1.10] - 2022-11-18
818
9### Added19### Added
modifiedpallets/nonfungible/Cargo.tomldiffbeforeafterboth
1[package]1[package]
2name = "pallet-nonfungible"2name = "pallet-nonfungible"
3version = "0.1.9"3version = "0.1.11"
4license = "GPLv3"4license = "GPLv3"
5edition = "2021"5edition = "2021"
66
modifiedpallets/refungible/CHANGELOG.mddiffbeforeafterboth
44
5<!-- bureaucrate goes here -->5<!-- bureaucrate goes here -->
66
7## [0.2.10] - 2022-12-16
8
9### Added
10
11- The function `tokenPropertyPermissions` and `setTokenPropertyPermissions` to `TokenProperties` interface.
12
13### Changed
14
15- Hide `setTokenPropertyPermission` function in `TokenProperties` interface.
16
7## [0.2.9] - 2022-11-1817## [0.2.9] - 2022-11-18
818
9### Added19### Added
modifiedpallets/refungible/Cargo.tomldiffbeforeafterboth
1[package]1[package]
2name = "pallet-refungible"2name = "pallet-refungible"
3version = "0.2.8"3version = "0.2.10"
4license = "GPLv3"4license = "GPLv3"
5edition = "2021"5edition = "2021"
66