From 375ef411d16e0ee167b710a351c4ae43d6a5ebf4 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 2 Apr 2021 11:36:25 -0700 Subject: [PATCH] v2.4.0 --- CHANGELOG.md | 7 ++++++- README.md | 2 +- lib/pkg.js | 2 +- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d96540840..e12c9cd37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # HSD Release Notes & Changelog -## unreleased +## v2.4.0 ### Chain & Consensus changes @@ -13,6 +13,11 @@ Pruned nodes _cannot_ run this migration. Note that pruned nodes may have an incorrect chain value until they re-sync. +### Mining changes + +- `getwork` has been fixed and improved. See + https://github.com/handshake-org/hsd/pull/583. + ### Wallet changes - Fixes a bug that caused rescans to fail if a name being "watched" was ever diff --git a/README.md b/README.md index 0a624da27..2743b9cac 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ $ npm install -g https://github.com/handshake-org/hsd.git A `git` ref can be used to install a particular version by appending a `#` and the name of the `git` ref to the URL. For example, -`https://github.com/handshake-org/hsd.git#v2.3.0`. It is recommended +`https://github.com/handshake-org/hsd.git#v2.4.0`. It is recommended to use the [latest tagged release](https://github.com/handshake-org/hsd/releases). If adding `hsd` as a dependency to a project, use the command: diff --git a/lib/pkg.js b/lib/pkg.js index e1e5a3d1c..cd553192a 100644 --- a/lib/pkg.js +++ b/lib/pkg.js @@ -70,7 +70,7 @@ pkg.cfg = `${pkg.core}.conf`; * @default */ -pkg.version = '2.3.0'; +pkg.version = '2.4.0'; /** * Repository URL. diff --git a/package-lock.json b/package-lock.json index 0c17b9d21..156cfe54d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "hsd", - "version": "2.3.0", + "version": "2.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 844d3e21c..6e3cd38bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hsd", - "version": "2.3.0", + "version": "2.4.0", "description": "Cryptocurrency bike-shed", "license": "MIT", "repository": "git://github.com/handshake-org/hsd.git",