Skip to content

Commit d06789f

Browse files
chore(release): update changelog and bump version to 2.0.0-rc.18 (#2681)
1 parent 1e21d78 commit d06789f

File tree

50 files changed

+109
-76
lines changed

Some content is hidden

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

50 files changed

+109
-76
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## [2.0.0-rc.18](https://github.com/dashpay/platform/compare/v2.0.0-rc.16...v2.0.0-rc.18) (2025-06-24)
2+
3+
4+
### ⚠ BREAKING CHANGES
5+
6+
* **platform:** properly use withdrawal system data contract. (#2675)
7+
8+
### Features
9+
10+
* **dpp:** add detailed interval evaluation explanation functionality ([#2662](https://github.com/dashpay/platform/issues/2662))
11+
* replace diskusage with diskusage-ng for improved functionality ([#2680](https://github.com/dashpay/platform/issues/2680))
12+
* **sdk:** fetch token contract info ([#2670](https://github.com/dashpay/platform/issues/2670))
13+
14+
15+
### Bug Fixes
16+
17+
* **drive-abci:** fixed issue with adding a key with contract bounds ([#2673](https://github.com/dashpay/platform/issues/2673))
18+
* **platform:** properly use withdrawal system data contract. ([#2675](https://github.com/dashpay/platform/issues/2675))
19+
20+
21+
### Continuous Integration
22+
23+
* add gRPC coverage check and cache management ([#2667](https://github.com/dashpay/platform/issues/2667))
24+
25+
26+
### Miscellaneous Chores
27+
28+
* **platform:** remove dash devs discord from readme ([#2668](https://github.com/dashpay/platform/issues/2668))
29+
* **release:** update changelog and bump version to 2.0.0-rc.17 ([#2674](https://github.com/dashpay/platform/issues/2674))
30+
* remove unused token meta schema and references ([#2677](https://github.com/dashpay/platform/issues/2677))
31+
* update js dependencies to latest versions ([#2678](https://github.com/dashpay/platform/issues/2678))
32+
* update minimatch to version 9.0.5 and brace-expansion to version 2.0.2 ([#2672](https://github.com/dashpay/platform/issues/2672))
33+
134
## [2.0.0-rc.17](https://github.com/dashpay/platform/compare/v2.0.0-rc.16...v2.0.0-rc.17) (2025-06-18)
235

336

Cargo.lock

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

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": "2.0.0-rc.17",
3+
"version": "2.0.0-rc.18",
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": "2.0.0-rc.17",
4+
"version": "2.0.0-rc.18",
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 = "2.0.0-rc.17"
3+
version = "2.0.0-rc.18"
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 = "2.0.0-rc.17"
4+
version = "2.0.0-rc.18"
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": "2.0.0-rc.17",
3+
"version": "2.0.0-rc.18",
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": "2.0.0-rc.17",
4+
"version": "2.0.0-rc.18",
55
"description": "A decentralized API for the Dash network",
66
"scripts": {
77
"api": "node scripts/api.js",

packages/dash-spv/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/dash-spv",
3-
"version": "3.0.0-rc.17",
3+
"version": "3.0.0-rc.18",
44
"description": "Repository containing SPV functions used by @dashevo",
55
"main": "index.js",
66
"scripts": {

packages/dashmate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dashmate",
3-
"version": "2.0.0-rc.17",
3+
"version": "2.0.0-rc.18",
44
"description": "Distribution package for Dash node installation",
55
"scripts": {
66
"lint": "eslint .",

0 commit comments

Comments
 (0)