Skip to content

Commit

Permalink
Update changelog and bump binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
benedettadavico committed Oct 31, 2023
1 parent 5ef48b9 commit b056a97
Show file tree
Hide file tree
Showing 15 changed files with 52 additions and 25 deletions.
25 changes: 22 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,28 @@
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]
- add client registry to Gateway ([#3955])
- add HTTP API to Gateway ([#3955])
- add `/client/<pub-key>`, `clients` and `register` routes to the gateway ([#3955])

## [2023.3-kinder] (2023-10-31)

- suppress error output ([#4056])
- Update frontend type for current vesting period ([#4042])
- re-exported additional types for tx queries ([#4036])
- fixed fmt::Display impl for GatewayNetworkRequesterDetails ([#4033])
- Add exit node policy from TorNull and Tor Exit Node Policy ([#4024])
- basic self-described api for gateways to dynamically announce its details + nym-api aggregation ([#4017])
- use saturating sub in case outfox is not enabled ([#3986])
- Fix sorting for mixnodes and gateways ([#3985])
- Gateway client registry and api routes ([#3955])

[#4056]: https://github.com/nymtech/nym/pull/4056
[#4042]: https://github.com/nymtech/nym/pull/4042
[#4036]: https://github.com/nymtech/nym/pull/4036
[#4033]: https://github.com/nymtech/nym/pull/4033
[#4024]: https://github.com/nymtech/nym/issues/4024
[#4017]: https://github.com/nymtech/nym/issues/4017
[#3986]: https://github.com/nymtech/nym/pull/3986
[#3985]: https://github.com/nymtech/nym/pull/3985
[#3955]: https://github.com/nymtech/nym/pull/3955

## [2023.1-milka] (2023-09-24)

Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion clients/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nym-client"
version = "1.1.30"
version = "1.1.31"
authors = ["Dave Hrycyszyn <[email protected]>", "Jędrzej Stuczyński <[email protected]>"]
description = "Implementation of the Nym Client"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion clients/socks5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nym-socks5-client"
version = "1.1.30"
version = "1.1.31"
authors = ["Dave Hrycyszyn <[email protected]>"]
description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion explorer-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "explorer-api"
version = "1.1.30"
version = "1.1.31"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "nym-gateway"
version = "1.1.30"
version = "1.1.31"
authors = [
"Dave Hrycyszyn <[email protected]>",
"Jędrzej Stuczyński <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion mixnode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "nym-mixnode"
version = "1.1.31"
version = "1.1.32"
authors = [
"Dave Hrycyszyn <[email protected]>",
"Jędrzej Stuczyński <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion nym-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "nym-api"
version = "1.1.31"
version = "1.1.32"
authors = [
"Dave Hrycyszyn <[email protected]>",
"Jędrzej Stuczyński <[email protected]>",
Expand Down
8 changes: 8 additions & 0 deletions nym-wallet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## [v1.2.10] (2023-10-31)

- Add loading model on initial load of delegations ([#4039])
- remove any whitespace from input field when bonding host ([#4062])

[#4039]: https://github.com/nymtech/nym/pull/4039
[#4062]: https://github.com/nymtech/nym/pull/4062

## [v1.2.9] (2023-10-10)

- Wallet: Introduce edit account name ([#3895])
Expand Down
4 changes: 2 additions & 2 deletions nym-wallet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nymproject/nym-wallet-app",
"version": "1.2.9",
"version": "1.2.10",
"main": "index.js",
"license": "MIT",
"scripts": {
Expand Down Expand Up @@ -124,4 +124,4 @@
"webpack-favicons": "^1.3.8",
"webpack-merge": "^5.8.0"
}
}
}
2 changes: 1 addition & 1 deletion nym-wallet/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nym_wallet"
version = "1.2.9"
version = "1.2.10"
description = "Nym Native Wallet"
authors = ["Nym Technologies SA"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion nym-wallet/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "nym-wallet",
"version": "1.2.9"
"version": "1.2.10"
},
"build": {
"distDir": "../dist",
Expand Down
2 changes: 1 addition & 1 deletion service-providers/network-requester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "nym-network-requester"
version = "1.1.30"
version = "1.1.31"
authors.workspace = true
edition.workspace = true
rust-version = "1.65"
Expand Down
2 changes: 1 addition & 1 deletion service-providers/network-statistics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nym-network-statistics"
version = "1.1.30"
version = "1.1.31"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion tools/nym-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nym-cli"
version = "1.1.30"
version = "1.1.31"
authors.workspace = true
edition = "2021"

Expand Down

0 comments on commit b056a97

Please sign in to comment.