Skip to content

Commit

Permalink
chore(release): update changelog and bump version to 1.1.0-dev.1 (#2049)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Aug 13, 2024
1 parent eb6857b commit 5a7dba4
Show file tree
Hide file tree
Showing 45 changed files with 95 additions and 68 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## [1.1.0-dev.1](https://github.com/dashpay/platform/compare/v1.0.2...v1.1.0-dev.1) (2024-08-13)


### ⚠ BREAKING CHANGES

* masternode reward payouts are changed so previously created state won't be compatible (#2032)
* previously created networks won't be supported since genesis configuration is changed (#2042)
* added genesis core height in misc tree so previously created state won't be compatible (#2038)

### Features

* configure wait for ST result timeout ([#2045](https://github.com/dashpay/platform/issues/2045))
* **dashmate:** configure tenderdash connections ([#2048](https://github.com/dashpay/platform/issues/2048))
* **drive-abci:** skip state transition txs if time limit is reached on prepare_proposal ([#2041](https://github.com/dashpay/platform/issues/2041))
* **platform:** store/fetch genesis core height in misc tree ([#2038](https://github.com/dashpay/platform/issues/2038))
* **platform:** total credits on platform query and fix for reward distribution ([#2032](https://github.com/dashpay/platform/issues/2032))


### Miscellaneous Chores

* **dashmate:** update consensus params ([#2042](https://github.com/dashpay/platform/issues/2042))
* **dashmate:** update tenderdash seed ([#2040](https://github.com/dashpay/platform/issues/2040))
* ignore security vulnerability 1098397 ([#2044](https://github.com/dashpay/platform/issues/2044))

### [1.0.2](https://github.com/dashpay/platform/compare/v1.0.1...v1.0.2) (2024-07-31)


Expand Down
50 changes: 25 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/platform",
"version": "1.0.2",
"version": "1.1.0-dev.1",
"private": true,
"scripts": {
"setup": "yarn install && yarn run build && yarn run configure",
Expand Down
2 changes: 1 addition & 1 deletion packages/bench-suite/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dashevo/bench-suite",
"private": true,
"version": "1.0.2",
"version": "1.1.0-dev.1",
"description": "Dash Platform benchmark tool",
"scripts": {
"bench": "node ./bin/bench.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/check-features/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "check-features"
version = "0.1.2"
version = "1.1.0-dev.1"
edition = "2021"

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

[dependencies]
toml = "0.8.12"
toml = "0.8.12"
2 changes: 1 addition & 1 deletion packages/dapi-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dapi-grpc"
description = "GRPC client for Dash Platform"
version = "1.0.2"
version = "1.1.0-dev.1"
authors = [
"Samuel Westrich <[email protected]>",
"Igor Markin <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/dapi-grpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dapi-grpc",
"version": "1.0.2",
"version": "1.1.0-dev.1",
"description": "DAPI GRPC definition file and generated clients",
"browser": "browser.js",
"main": "node.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dapi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dashevo/dapi",
"private": true,
"version": "1.0.2",
"version": "1.1.0-dev.1",
"description": "A decentralized API for the Dash network",
"scripts": {
"api": "node scripts/api.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dash-spv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dash-spv",
"version": "2.0.2",
"version": "2.1.0-dev.1",
"description": "Repository containing SPV functions used by @dashevo",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,9 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
options.platform.drive.tenderdash.p2p.seeds = mainnet.get('platform.drive.tenderdash.p2p.seeds');
}

options.platform.drive.abci.docker.image = 'dashpay/drive:1-dev';
options.platform.dapi.api.docker.image = 'dashpay/dapi:1-dev';

options.platform.gateway.listeners.dapiAndDrive.waitForStResultTimeout = '125s';
options.platform.dapi.api.waitForStResultTimeout = 120000;

Expand Down
2 changes: 1 addition & 1 deletion packages/dashmate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dashmate",
"version": "1.0.2",
"version": "1.1.0-dev.1",
"description": "Distribution package for Dash node installation",
"scripts": {
"lint": "eslint .",
Expand Down
2 changes: 1 addition & 1 deletion packages/dashpay-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dashpay-contract"
description = "DashPay data contract schema and tools"
version = "1.0.2"
version = "1.1.0-dev.1"
edition = "2021"
rust-version = "1.76"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dashpay-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dashpay-contract",
"version": "1.0.2",
"version": "1.1.0-dev.1",
"description": "Reference contract of the DashPay DPA on Dash Evolution",
"scripts": {
"lint": "eslint .",
Expand Down
2 changes: 1 addition & 1 deletion packages/data-contracts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "data-contracts"
description = "Dash Platform system data contracts"
version = "1.0.2"
version = "1.1.0-dev.1"
edition = "2021"
rust-version = "1.76"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dpns-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dpns-contract"
description = "DPNS data contract schema and tools"
version = "1.0.2"
version = "1.1.0-dev.1"
edition = "2021"
rust-version = "1.76"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dpns-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dpns-contract",
"version": "1.0.2",
"version": "1.1.0-dev.1",
"description": "A contract and helper scripts for DPNS DApp",
"scripts": {
"lint": "eslint .",
Expand Down
2 changes: 1 addition & 1 deletion packages/feature-flags-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "feature-flags-contract"
description = "Feature flags data contract schema and tools"
version = "1.0.2"
version = "1.1.0-dev.1"
edition = "2021"
rust-version = "1.76"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/feature-flags-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/feature-flags-contract",
"version": "1.0.2",
"version": "1.1.0-dev.1",
"description": "Data Contract to store Dash Platform feature flags",
"scripts": {
"build": "",
Expand Down
Loading

0 comments on commit 5a7dba4

Please sign in to comment.