Skip to content

Commit 39e2473

Browse files
authored
Merge pull request #4702 from nymtech/release/2024.7-doubledecker
Release/2024.7 doubledecker
2 parents 93a1088 + ed9223d commit 39e2473

File tree

11 files changed

+65
-20
lines changed

11 files changed

+65
-20
lines changed

.github/workflows/ci-build-upload-binaries.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ jobs:
104104
name: nym-binaries-artifacts
105105
path: |
106106
target/release/nym-client
107-
target/release/nym-gateway
108-
target/release/nym-mixnode
109107
target/release/nym-socks5-client
110108
target/release/nym-api
111109
target/release/nym-network-requester
@@ -123,8 +121,6 @@ jobs:
123121
OUTPUT_DIR: ci-builds/${{ github.ref_name }}
124122
run: |
125123
cp target/release/nym-client $OUTPUT_DIR
126-
cp target/release/nym-gateway $OUTPUT_DIR
127-
cp target/release/nym-mixnode $OUTPUT_DIR
128124
cp target/release/nym-socks5-client $OUTPUT_DIR
129125
cp target/release/nym-api $OUTPUT_DIR
130126
cp target/release/nym-network-requester $OUTPUT_DIR

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https://
44

55
## [Unreleased]
66

7+
## [2024.7-doubledecker] (2024-07-04)
8+
9+
- Add an early return in `parse_raw_str_logs` for empty raw log strings. ([#4686])
10+
- Bump braces from 3.0.2 to 3.0.3 in /wasm/mix-fetch/internal-dev ([#4672])
11+
- add expiry returned on import ([#4670])
12+
- [bugfix] missing rustls feature ([#4666])
13+
- Bump ws from 8.13.0 to 8.17.1 in /wasm/client/internal-dev-node ([#4665])
14+
- Bump braces from 3.0.2 to 3.0.3 in /clients/native/examples/js-examples/websocket ([#4663])
15+
- Bump ws from 8.14.2 to 8.17.1 in /sdk/typescript/packages/nodejs-client ([#4662])
16+
- Update setup.md ([#4661])
17+
- New clippy lints ([#4660])
18+
- Bump braces from 3.0.2 to 3.0.3 in /nym-api/tests ([#4659])
19+
- Bump braces from 3.0.2 to 3.0.3 in /docker/typescript_client/upload_contract ([#4658])
20+
- Update vps-setup.md ([#4656])
21+
- Update configuration.md ([#4655])
22+
- Remove old PR template ([#4639])
23+
24+
[#4686]: https://github.com/nymtech/nym/pull/4686
25+
[#4672]: https://github.com/nymtech/nym/pull/4672
26+
[#4670]: https://github.com/nymtech/nym/pull/4670
27+
[#4666]: https://github.com/nymtech/nym/pull/4666
28+
[#4665]: https://github.com/nymtech/nym/pull/4665
29+
[#4663]: https://github.com/nymtech/nym/pull/4663
30+
[#4662]: https://github.com/nymtech/nym/pull/4662
31+
[#4661]: https://github.com/nymtech/nym/pull/4661
32+
[#4660]: https://github.com/nymtech/nym/pull/4660
33+
[#4659]: https://github.com/nymtech/nym/pull/4659
34+
[#4658]: https://github.com/nymtech/nym/pull/4658
35+
[#4656]: https://github.com/nymtech/nym/pull/4656
36+
[#4655]: https://github.com/nymtech/nym/pull/4655
37+
[#4639]: https://github.com/nymtech/nym/pull/4639
38+
739
## [2024.6-chomp] (2024-06-25)
840

941
- Remove additional code as part of Ephemera Purge and SP and contracts ([#4650])

Cargo.lock

Lines changed: 25 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/native/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nym-client"
3-
version = "1.1.36"
3+
version = "1.1.37"
44
authors = ["Dave Hrycyszyn <[email protected]>", "Jędrzej Stuczyński <[email protected]>"]
55
description = "Implementation of the Nym Client"
66
edition = "2021"

clients/socks5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nym-socks5-client"
3-
version = "1.1.36"
3+
version = "1.1.37"
44
authors = ["Dave Hrycyszyn <[email protected]>"]
55
description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address"
66
edition = "2021"

explorer-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "explorer-api"
3-
version = "1.1.35"
3+
version = "1.1.36"
44
edition = "2021"
55
license.workspace = true
66

nym-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[package]
55
name = "nym-api"
66
license = "GPL-3.0"
7-
version = "1.1.39"
7+
version = "1.1.40"
88
authors = [
99
"Dave Hrycyszyn <[email protected]>",
1010
"Jędrzej Stuczyński <[email protected]>",

nym-node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "nym-node"
6-
version = "1.1.3"
6+
version = "1.1.4"
77
authors.workspace = true
88
repository.workspace = true
99
homepage.workspace = true

service-providers/network-requester/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[package]
55
name = "nym-network-requester"
66
license = "GPL-3.0"
7-
version = "1.1.37"
7+
version = "1.1.38"
88
authors.workspace = true
99
edition.workspace = true
1010
rust-version = "1.70"

tools/nym-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nym-cli"
3-
version = "1.1.37"
3+
version = "1.1.38"
44
authors.workspace = true
55
edition = "2021"
66
license.workspace = true

tools/nymvisor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nymvisor"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
authors.workspace = true
55
repository.workspace = true
66
homepage.workspace = true

0 commit comments

Comments
 (0)