Skip to content

Commit 889d192

Browse files
authored
chore(release): update changelog and bump version to 1.8.0-dev.1 (#2391)
1 parent 8185d21 commit 889d192

File tree

47 files changed

+100
-70
lines changed

Some content is hidden

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

47 files changed

+100
-70
lines changed

CHANGELOG.md

+22
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

+26-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
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

+1-1
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

+1-1
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

+1-1
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 <[email protected]>",
77
"Igor Markin <[email protected]>",

packages/dapi-grpc/package.json

+1-1
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

+1-1
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",

packages/dash-spv/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/dash-spv",
3-
"version": "2.7.0",
3+
"version": "2.8.0-dev.1",
44
"description": "Repository containing SPV functions used by @dashevo",
55
"main": "index.js",
66
"scripts": {

packages/dashmate/configs/getConfigFileMigrationsFactory.js

+8
Original file line numberDiff line numberDiff line change
@@ -1056,6 +1056,14 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
10561056
});
10571057
return configFile;
10581058
},
1059+
'1.8.0': (configFile) => {
1060+
Object.entries(configFile.configs)
1061+
.forEach(([, options]) => {
1062+
options.platform.drive.abci.docker.image = 'dashpay/drive:1-dev';
1063+
options.platform.dapi.api.docker.image = 'dashpay/dapi:1-dev';
1064+
});
1065+
return configFile;
1066+
},
10591067
};
10601068
}
10611069

packages/dashmate/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dashmate",
3-
"version": "1.7.0",
3+
"version": "1.8.0-dev.1",
44
"description": "Distribution package for Dash node installation",
55
"scripts": {
66
"lint": "eslint .",

packages/dashpay-contract/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dashpay-contract"
33
description = "DashPay data contract schema and tools"
4-
version = "1.7.0"
4+
version = "1.8.0-dev.1"
55
edition = "2021"
66
rust-version.workspace = true
77
license = "MIT"

packages/dashpay-contract/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/dashpay-contract",
3-
"version": "1.7.0",
3+
"version": "1.8.0-dev.1",
44
"description": "Reference contract of the DashPay DPA on Dash Evolution",
55
"scripts": {
66
"lint": "eslint .",

packages/data-contracts/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "data-contracts"
33
description = "Dash Platform system data contracts"
4-
version = "1.7.0"
4+
version = "1.8.0-dev.1"
55
edition = "2021"
66
rust-version.workspace = true
77
license = "MIT"

packages/dpns-contract/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dpns-contract"
33
description = "DPNS data contract schema and tools"
4-
version = "1.7.0"
4+
version = "1.8.0-dev.1"
55
edition = "2021"
66
rust-version.workspace = true
77
license = "MIT"

packages/dpns-contract/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/dpns-contract",
3-
"version": "1.7.0",
3+
"version": "1.8.0-dev.1",
44
"description": "A contract and helper scripts for DPNS DApp",
55
"scripts": {
66
"lint": "eslint .",

packages/feature-flags-contract/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "feature-flags-contract"
33
description = "Feature flags data contract schema and tools"
4-
version = "1.7.0"
4+
version = "1.8.0-dev.1"
55
edition = "2021"
66
rust-version.workspace = true
77
license = "MIT"

0 commit comments

Comments
 (0)