diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000..4749f10c60 Binary files /dev/null and b/.DS_Store differ diff --git a/CHANGELOG.md b/CHANGELOG.md index eb2be34ebd..f0e973d88e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,34 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [Unreleased] + +# [v1.1.7] (2023-01-24) + +### Added + +- Gateways now shut down gracefully ([#2019]). +- Rust SDK - Initial version for nym-client ([#2669]). +- Introduce vesting contract query for addresses of all vesting accounts (required for the circulating supply calculation) ([#2778]). +- Add threshold value to the contract storage ([#1893]) + +### Changed + +- Refactor vesting account storage (and in particular, ACCOUNTS saving) ([#2795]). +- Move from manual advancing DKG state to an automatic process ([#2670]). + +### Fixed + +- Gateways now shut down gracefully ([#2019]). + +[#2019]: https://github.com/nymtech/nym/issues/2019 +[#2669]: https://github.com/nymtech/nym/issues/2669 +[#2795]: https://github.com/nymtech/nym/issues/2795 +[#2778]: https://github.com/nymtech/nym/issues/2778 +[#2670]: https://github.com/nymtech/nym/issues/2670 +[#1893]: https://github.com/nymtech/nym/issues/1893 + + ## [v1.1.6] (2023-01-17) ### Added diff --git a/clients/.DS_Store b/clients/.DS_Store new file mode 100644 index 0000000000..31c7b1aa5d Binary files /dev/null and b/clients/.DS_Store differ diff --git a/clients/client-core/Cargo.toml b/clients/client-core/Cargo.toml index fee89c52df..da245cf7ab 100644 --- a/clients/client-core/Cargo.toml +++ b/clients/client-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "client-core" -version = "1.1.6" +version = "1.1.7" authors = ["Dave Hrycyszyn "] edition = "2021" rust-version = "1.66" diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 1e33012304..914c6aa608 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.6" +version = "1.1.7" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] description = "Implementation of the Nym Client" edition = "2021" diff --git a/clients/socks5/Cargo.toml b/clients/socks5/Cargo.toml index 7567dda43b..09a65bb093 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.5" +version = "1.1.7" authors = ["Dave Hrycyszyn "] description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address" edition = "2021" diff --git a/contracts/.DS_Store b/contracts/.DS_Store new file mode 100644 index 0000000000..9fd855f537 Binary files /dev/null and b/contracts/.DS_Store differ diff --git a/contracts/vesting/Cargo.toml b/contracts/vesting/Cargo.toml index dd8d2966f0..4eb800599a 100644 --- a/contracts/vesting/Cargo.toml +++ b/contracts/vesting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vesting-contract" -version = "1.1.2" +version = "1.1.3" authors = ["Drazen Urch "] edition = "2021" diff --git a/explorer-api/Cargo.toml b/explorer-api/Cargo.toml index eb4b6ac83f..e03370527f 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.2" +version = "1.1.7" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/explorer/CHANGELOG.md b/explorer/CHANGELOG.md index fc1cf8a756..b021d3babc 100644 --- a/explorer/CHANGELOG.md +++ b/explorer/CHANGELOG.md @@ -1,5 +1,13 @@ ## UNRELEASED +## [nym-explorer-v1.0.3](https://github.com/nymtech/nym/tree/nym-explorer-v1.0.3) (2023-01-24) + +- Stake Saturation tooltip on node list and node pages updated ([#2877]) +- Sandbox Upgrade : Name change from "Network Explorer" to "Sandbox Explorer", button to mainnet explorer and link to faucet ([#2332)]) + +[#2877]: https://github.com/nymtech/nym/issues/2877 +[#2332]: https://github.com/nymtech/nym/issues/2332 + ## [nym-explorer-v1.0.2](https://github.com/nymtech/nym/tree/nym-explorer-v1.0.2) (2023-01-17) - changing the explorers guru link ([#2820]) diff --git a/explorer/package.json b/explorer/package.json index 68cd1ab62c..3ca03f5b56 100644 --- a/explorer/package.json +++ b/explorer/package.json @@ -1,6 +1,6 @@ { "name": "@nym/network-explorer", - "version": "1.0.2", + "version": "1.0.3", "private": true, "license": "Apache-2.0", "dependencies": { diff --git a/gateway/Cargo.toml b/gateway/Cargo.toml index bc76a5ff11..ec12fcb90d 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-gateway" -version = "1.1.6" +version = "1.1.7" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/mixnode/.DS_Store b/mixnode/.DS_Store new file mode 100644 index 0000000000..c7ae475cad Binary files /dev/null and b/mixnode/.DS_Store differ diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index da0b3ae901..984f464375 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-mixnode" -version = "1.1.6" +version = "1.1.7" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 9f320ad30e..fc8404fe02 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.5" +version = "1.1.7" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-connect/.DS_Store b/nym-connect/.DS_Store new file mode 100644 index 0000000000..7bf1d03999 Binary files /dev/null and b/nym-connect/.DS_Store differ diff --git a/nym-connect/CHANGELOG.md b/nym-connect/CHANGELOG.md index 138b2beb0c..cddba036e0 100644 --- a/nym-connect/CHANGELOG.md +++ b/nym-connect/CHANGELOG.md @@ -2,7 +2,11 @@ ## UNRELEASED -- Remove test and earn +## [nym-connect-v1.1.7](https://github.com/nymtech/nym/tree/nym-connect-v1.1.7) (2023-01-24) + +- Remove test and earn ([#2865]) + +[#2865]: https://github.com/nymtech/nym/issue/2865 ## [nym-connect-v1.1.6](https://github.com/nymtech/nym/tree/nym-connect-v1.1.6) (2023-01-17) diff --git a/nym-connect/package.json b/nym-connect/package.json index c2de26db48..5aae6698ed 100644 --- a/nym-connect/package.json +++ b/nym-connect/package.json @@ -1,6 +1,6 @@ { "name": "@nym/nym-connect", - "version": "1.1.6", + "version": "1.1.7", "main": "index.js", "license": "MIT", "scripts": { diff --git a/nym-connect/src-tauri/Cargo.toml b/nym-connect/src-tauri/Cargo.toml index b3cbb83530..dd88c73c49 100644 --- a/nym-connect/src-tauri/Cargo.toml +++ b/nym-connect/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-connect" -version = "1.1.6" +version = "1.1.7" description = "nym-connect" authors = ["Nym Technologies SA"] license = "" diff --git a/nym-connect/src-tauri/tauri.conf.json b/nym-connect/src-tauri/tauri.conf.json index b9942d4537..96cc9f0fa6 100644 --- a/nym-connect/src-tauri/tauri.conf.json +++ b/nym-connect/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "nym-connect", - "version": "1.1.6" + "version": "1.1.7" }, "build": { "distDir": "../dist", diff --git a/nym-wallet/.DS_Store b/nym-wallet/.DS_Store new file mode 100644 index 0000000000..23b76277ca Binary files /dev/null and b/nym-wallet/.DS_Store differ diff --git a/nym-wallet/CHANGELOG.md b/nym-wallet/CHANGELOG.md index d73e728f2a..6ffde9b4de 100644 --- a/nym-wallet/CHANGELOG.md +++ b/nym-wallet/CHANGELOG.md @@ -2,6 +2,12 @@ ## UNRELEASED +## [nym-wallet-v1.1.8](https://github.com/nymtech/nym/releases/tag/nym-wallet-v1.1.8) (2023-01-24) + +- Fix delegations sorting ([#2885]) + +[#2885]: https://github.com/nymtech/nym/issues/2885 + ## [nym-wallet-v1.1.7](https://github.com/nymtech/nym/releases/tag/nym-wallet-v1.1.7) (2023-01-17) - link to the ng mixnet explorer for account info ([#2823]) diff --git a/nym-wallet/package.json b/nym-wallet/package.json index cf77f4364f..9dc201f639 100644 --- a/nym-wallet/package.json +++ b/nym-wallet/package.json @@ -1,6 +1,6 @@ { "name": "@nymproject/nym-wallet-app", - "version": "1.1.7", + "version": "1.1.8", "main": "index.js", "license": "MIT", "scripts": { diff --git a/nym-wallet/src-tauri/Cargo.toml b/nym-wallet/src-tauri/Cargo.toml index 7325f9051e..fe3d203aa9 100644 --- a/nym-wallet/src-tauri/Cargo.toml +++ b/nym-wallet/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym_wallet" -version = "1.1.7" +version = "1.1.8" description = "Nym Native Wallet" authors = ["Nym Technologies SA"] license = "" diff --git a/nym-wallet/src-tauri/tauri.conf.json b/nym-wallet/src-tauri/tauri.conf.json index 297ddcf129..08cc4b3383 100644 --- a/nym-wallet/src-tauri/tauri.conf.json +++ b/nym-wallet/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "nym-wallet", - "version": "1.1.7" + "version": "1.1.8" }, "build": { "distDir": "../dist", diff --git a/service-providers/.DS_Store b/service-providers/.DS_Store new file mode 100644 index 0000000000..9ffdb3cec4 Binary files /dev/null and b/service-providers/.DS_Store differ diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 24e4d62d24..2c1761ff13 100644 --- a/service-providers/network-requester/Cargo.toml +++ b/service-providers/network-requester/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-network-requester" -version = "1.1.6" +version = "1.1.7" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] edition = "2021" rust-version = "1.65" diff --git a/service-providers/network-statistics/Cargo.toml b/service-providers/network-statistics/Cargo.toml index f5a6f48d73..8a618a823f 100644 --- a/service-providers/network-statistics/Cargo.toml +++ b/service-providers/network-statistics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-network-statistics" -version = "1.1.6" +version = "1.1.7" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/tools/.DS_Store b/tools/.DS_Store new file mode 100644 index 0000000000..001d118716 Binary files /dev/null and b/tools/.DS_Store differ diff --git a/tools/nym-cli/Cargo.toml b/tools/nym-cli/Cargo.toml index 9c16634723..b979fc7e16 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.6" +version = "1.1.7" authors = ["Nym Technologies SA"] edition = "2021"