Skip to content

Commit 5a7dba4

Browse files
authored
chore(release): update changelog and bump version to 1.1.0-dev.1 (#2049)
1 parent eb6857b commit 5a7dba4

File tree

45 files changed

+95
-68
lines changed

Some content is hidden

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

45 files changed

+95
-68
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## [1.1.0-dev.1](https://github.com/dashpay/platform/compare/v1.0.2...v1.1.0-dev.1) (2024-08-13)
2+
3+
4+
### ⚠ BREAKING CHANGES
5+
6+
* masternode reward payouts are changed so previously created state won't be compatible (#2032)
7+
* previously created networks won't be supported since genesis configuration is changed (#2042)
8+
* added genesis core height in misc tree so previously created state won't be compatible (#2038)
9+
10+
### Features
11+
12+
* configure wait for ST result timeout ([#2045](https://github.com/dashpay/platform/issues/2045))
13+
* **dashmate:** configure tenderdash connections ([#2048](https://github.com/dashpay/platform/issues/2048))
14+
* **drive-abci:** skip state transition txs if time limit is reached on prepare_proposal ([#2041](https://github.com/dashpay/platform/issues/2041))
15+
* **platform:** store/fetch genesis core height in misc tree ([#2038](https://github.com/dashpay/platform/issues/2038))
16+
* **platform:** total credits on platform query and fix for reward distribution ([#2032](https://github.com/dashpay/platform/issues/2032))
17+
18+
19+
### Miscellaneous Chores
20+
21+
* **dashmate:** update consensus params ([#2042](https://github.com/dashpay/platform/issues/2042))
22+
* **dashmate:** update tenderdash seed ([#2040](https://github.com/dashpay/platform/issues/2040))
23+
* ignore security vulnerability 1098397 ([#2044](https://github.com/dashpay/platform/issues/2044))
24+
125
### [1.0.2](https://github.com/dashpay/platform/compare/v1.0.1...v1.0.2) (2024-07-31)
226

327

Cargo.lock

Lines changed: 25 additions & 25 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": "1.0.2",
3+
"version": "1.1.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.0.2",
4+
"version": "1.1.0-dev.1",
55
"description": "Dash Platform benchmark tool",
66
"scripts": {
77
"bench": "node ./bin/bench.js",

packages/check-features/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "check-features"
3-
version = "0.1.2"
3+
version = "1.1.0-dev.1"
44
edition = "2021"
55

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

88
[dependencies]
9-
toml = "0.8.12"
9+
toml = "0.8.12"

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.0.2"
4+
version = "1.1.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.0.2",
3+
"version": "1.1.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.0.2",
4+
"version": "1.1.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

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": "2.0.2",
3+
"version": "2.1.0-dev.1",
44
"description": "Repository containing SPV functions used by @dashevo",
55
"main": "index.js",
66
"scripts": {

packages/dashmate/configs/getConfigFileMigrationsFactory.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,9 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
776776
options.platform.drive.tenderdash.p2p.seeds = mainnet.get('platform.drive.tenderdash.p2p.seeds');
777777
}
778778

779+
options.platform.drive.abci.docker.image = 'dashpay/drive:1-dev';
780+
options.platform.dapi.api.docker.image = 'dashpay/dapi:1-dev';
781+
779782
options.platform.gateway.listeners.dapiAndDrive.waitForStResultTimeout = '125s';
780783
options.platform.dapi.api.waitForStResultTimeout = 120000;
781784

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": "1.0.2",
3+
"version": "1.1.0-dev.1",
44
"description": "Distribution package for Dash node installation",
55
"scripts": {
66
"lint": "eslint .",

packages/dashpay-contract/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.0.2"
4+
version = "1.1.0-dev.1"
55
edition = "2021"
66
rust-version = "1.76"
77
license = "MIT"

packages/dashpay-contract/package.json

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

packages/data-contracts/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.0.2"
4+
version = "1.1.0-dev.1"
55
edition = "2021"
66
rust-version = "1.76"
77
license = "MIT"

packages/dpns-contract/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.0.2"
4+
version = "1.1.0-dev.1"
55
edition = "2021"
66
rust-version = "1.76"
77
license = "MIT"

packages/dpns-contract/package.json

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

packages/feature-flags-contract/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.0.2"
4+
version = "1.1.0-dev.1"
55
edition = "2021"
66
rust-version = "1.76"
77
license = "MIT"

packages/feature-flags-contract/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/feature-flags-contract",
3-
"version": "1.0.2",
3+
"version": "1.1.0-dev.1",
44
"description": "Data Contract to store Dash Platform feature flags",
55
"scripts": {
66
"build": "",

0 commit comments

Comments
 (0)