Skip to content

Commit 873627f

Browse files
authored
Merge branch 'v1.8-dev' into fix/dashmate/failed-core-after-restart
2 parents cb97363 + 889d192 commit 873627f

File tree

57 files changed

+224
-93
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+224
-93
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## [1.8.0-dev.1](https://github.com/dashpay/platform/compare/v1.7.0...v1.8.0-dev.1) (2024-12-16)
2+
3+
4+
### Continuous Integration
5+
6+
* fix artifact upload issue on release build ([#2389](https://github.com/dashpay/platform/issues/2389))
7+
8+
9+
### Miscellaneous Chores
10+
11+
* remove deprecated check_network_version.sh ([#2084](https://github.com/dashpay/platform/issues/2084))
12+
13+
14+
### Tests
15+
16+
* **sdk:** generate test vectors using testnet ([#2381](https://github.com/dashpay/platform/issues/2381))
17+
18+
19+
### Code Refactoring
20+
21+
* **platform:** replace bls library ([#2257](https://github.com/dashpay/platform/issues/2257))
22+
123
### [1.7.0](https://github.com/dashpay/platform/compare/v1.6.2...v1.7.0) (2024-12-13)
224

325

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,13 @@ members = [
2828
"packages/simple-signer",
2929
"packages/rs-json-schema-compatibility-validator",
3030
"packages/check-features",
31-
"packages/wallet-utils-contract"
31+
"packages/wallet-utils-contract",
3232
]
3333
[workspace.package]
3434

35-
rust-version = "1.80"
35+
rust-version = "1.83"
3636

3737
[patch.crates-io]
3838
tower-service = { git = "https://github.com/QuantumExplorer/tower", branch = "fix/indexMap2OnV0413" }
3939
tower-layer = { git = "https://github.com/QuantumExplorer/tower", branch = "fix/indexMap2OnV0413" }
4040
tower = { git = "https://github.com/QuantumExplorer/tower", branch = "fix/indexMap2OnV0413" }
41-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ this repository may be used on the following networks:
5151
- Install prerequisites:
5252
- [node.js](https://nodejs.org/) v20
5353
- [docker](https://docs.docker.com/get-docker/) v20.10+
54-
- [rust](https://www.rust-lang.org/tools/install) v1.80+, with wasm32 target (`rustup target add wasm32-unknown-unknown`)
54+
- [rust](https://www.rust-lang.org/tools/install) v1.83+, with wasm32 target (`rustup target add wasm32-unknown-unknown`)
5555
- [protoc - protobuf compiler](https://github.com/protocolbuffers/protobuf/releases) v27.3+
5656
- if needed, set PROTOC environment variable to location of `protoc` binary
5757
- [wasm-bingen toolchain](https://rustwasm.github.io/wasm-bindgen/):

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/platform",
3-
"version": "1.7.0",
3+
"version": "1.8.0-dev.1",
44
"private": true,
55
"scripts": {
66
"setup": "yarn install && yarn run build && yarn run configure",

packages/bench-suite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dashevo/bench-suite",
33
"private": true,
4-
"version": "1.7.0",
4+
"version": "1.8.0-dev.1",
55
"description": "Dash Platform benchmark tool",
66
"scripts": {
77
"bench": "node ./bin/bench.js",

packages/check-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "check-features"
3-
version = "1.7.0"
3+
version = "1.8.0-dev.1"
44
edition = "2021"
55

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

packages/dapi-grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dapi-grpc"
33
description = "GRPC client for Dash Platform"
4-
version = "1.7.0"
4+
version = "1.8.0-dev.1"
55
authors = [
66
"Samuel Westrich <sam@dash.org>",
77
"Igor Markin <igor.markin@dash.org>",

packages/dapi-grpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/dapi-grpc",
3-
"version": "1.7.0",
3+
"version": "1.8.0-dev.1",
44
"description": "DAPI GRPC definition file and generated clients",
55
"browser": "browser.js",
66
"main": "node.js",

packages/dapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dashevo/dapi",
33
"private": true,
4-
"version": "1.7.0",
4+
"version": "1.8.0-dev.1",
55
"description": "A decentralized API for the Dash network",
66
"scripts": {
77
"api": "node scripts/api.js",

0 commit comments

Comments
 (0)