Skip to content

Commit

Permalink
VErsion bump 1.5.0 + crates update (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
gRoussac authored Nov 7, 2023
1 parent a22758c commit d30d044
Show file tree
Hide file tree
Showing 16 changed files with 49 additions and 41 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ All notable changes to this project will be documented in this file. The format

### Changed

### Added

## Release 1.5.0

### Changed

- Update to README (#248)
- Update CES parser version (#246)
- Update modalities.md (#245)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- A NFT contract instance must validate provided metadata against the specified metadata schema for that contract.
- Standardized session code to interact with an NFT contract instance must be usable as is, so that a given DApp developer doesn't have to write any Wasm producing logic for normal usage of NFT contract instances produced by this contract.

## New in Version 1.4
## New in Version 1.5

Please refer to the [release notes](https://github.com/casper-ecosystem/cep-78-enhanced-nft/releases)

Expand Down
2 changes: 2 additions & 0 deletions client-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.5.0] - 2023-10-05

### Fixed

- Changed `@make-software/ces-js-parser` version to support future versions. [#246](https://github.com/casper-ecosystem/cep-78-enhanced-nft/pull/246)
Expand Down
2 changes: 1 addition & 1 deletion client-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "casper-cep78-js-client",
"version": "1.4.0",
"version": "1.5.0",
"description": "CEP78 Enhanced NFT JS Client",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions client/balance_of_session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "balance_of_session"
version = "1.4.0"
version = "1.5.0"
edition = "2018"

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "balance_of_call"
Expand Down
6 changes: 3 additions & 3 deletions client/get_approved_session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "get_approved_session"
version = "1.4.0"
version = "1.5.0"
edition = "2018"

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "get_approved_call"
Expand Down
6 changes: 3 additions & 3 deletions client/is_approved_for_all_session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "is_approved_for_all_session"
version = "1.4.0"
version = "1.5.0"
edition = "2018"

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "is_approved_for_all_call"
Expand Down
6 changes: 3 additions & 3 deletions client/mint_session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "mint_session"
version = "1.4.0"
version = "1.5.0"
edition = "2018"

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "mint_call"
Expand Down
6 changes: 3 additions & 3 deletions client/owner_of_session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "owner_of_session"
version = "1.4.0"
version = "1.5.0"
edition = "2018"

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "owner_of_call"
Expand Down
6 changes: 3 additions & 3 deletions client/transfer_session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "transfer_session"
version = "1.4.0"
version = "1.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "transfer_call"
Expand Down
6 changes: 3 additions & 3 deletions client/updated_receipts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "updated_receipts"
version = "1.4.0"
version = "1.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "updated_receipts"
Expand Down
8 changes: 4 additions & 4 deletions contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "contract"
version = "1.4.0"
version = "1.5.0"
edition = "2018"

[dependencies]
casper-contract = { version = "2.0.0", default-features = false, features = [
casper-contract = { version = "3.0.0", default-features = false, features = [
"test-support",
], optional = true }
casper-types = "2.0.0"
casper-types = "3.0.0"
serde = { version = "1.0.80", default-features = false }
serde_json = { version = "1.0.59", default-features = false }
serde-json-wasm = { version = "0.5.1", default-features = false }
base16 = { version = "0.2.1", default-features = false }
casper-event-standard = { version = "0.3.0", default-features = false }
casper-event-standard = { version = "0.4.0", default-features = false }
hex = { version = "0.4.3", default-features = false }

[[bin]]
Expand Down
6 changes: 3 additions & 3 deletions test-contracts/mangle_named_keys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "mangle_named_keys"
version = "1.1.1"
version = "1.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "mangle_named_keys"
Expand Down
6 changes: 3 additions & 3 deletions test-contracts/minting_contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "minting_contract"
version = "1.1.1"
version = "1.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "minting_contract"
Expand Down
6 changes: 3 additions & 3 deletions test-contracts/transfer_filter_contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "transfer_filter_contract"
version = "1.1.1"
version = "1.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
casper-contract = "2.0.0"
casper-types = "2.0.0"
casper-contract = "3.0.0"
casper-types = "3.0.0"

[[bin]]
name = "transfer_filter_contract"
Expand Down
10 changes: 5 additions & 5 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "tests"
version = "1.4.0"
version = "1.5.0"
edition = "2018"
[dependencies]
casper-engine-test-support = { version = "4.0.0", default-features = false, features = [
casper-engine-test-support = { version = "5.0.0", default-features = false, features = [
"test-support",
] }
contract = { path = "../contract", default-features = false }
casper-execution-engine = { version = "4.0.0", default-features = false }
casper-types = "2.0.0"
casper-execution-engine = { version = "5.0.0", default-features = false }
casper-types = "3.0.0"
serde = { version = "1.0.80", default-features = false }
serde_json = { version = "1.0.59", default-features = false }
once_cell = "1"
blake2 = { version = "0.9.0", default-features = false }
base16 = { version = "0.2.1", default-features = false }
rand = "0.8.5"
sha256 = "1.0.3"
casper-event-standard = { version = "0.3.0", default-features = false }
casper-event-standard = { version = "0.4.0", default-features = false }

0 comments on commit d30d044

Please sign in to comment.