Skip to content

Commit 363072a

Browse files
committed
v2.1.1
1 parent 051faa6 commit 363072a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

β€Ž.circleci/config.ymlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
- checkout
1515
- restore_cache:
1616
keys:
17-
- v2.1.0-dependencies-{{ checksum "package.json" }}
17+
- v2.1.1-dependencies-{{ checksum "package.json" }}
1818
# fallback to using the latest cache if no exact match is found
19-
- v2.1.0-dependencies-
19+
- v2.1.1-dependencies-
2020
- run: npm install
2121
- run: npm install bslint istanbul@1.1.0-alpha.1 codecov
2222
- save_cache:
2323
paths:
2424
- node_modules
25-
key: v2.1.0-dependencies-{{ checksum "package.json" }}
25+
key: v2.1.1-dependencies-{{ checksum "package.json" }}
2626
- persist_to_workspace:
2727
root: .
2828
paths: .

β€Žlib/net/hostlist.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ class HostList {
11991199
assert(json.magic === this.network.magic, 'Magic mismatch.');
12001200

12011201
if (json.version < 4) {
1202-
// Migrate to v2.
1202+
// Migrate to v4.
12031203
for (const item of json.addrs) {
12041204
const entry = HostEntry.fromJSON(item, this.network);
12051205
const {addr, src} = entry;

β€Žlib/pkg.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pkg.cfg = `${pkg.core}.conf`;
7070
* @default
7171
*/
7272

73-
pkg.version = '2.1.0';
73+
pkg.version = '2.1.1';
7474

7575
/**
7676
* Repository URL.

β€Žpackage-lock.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
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": "hsd",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Cryptocurrency bike-shed",
55
"license": "MIT",
66
"repository": "git://github.com/handshake-org/hsd.git",

0 commit comments

Comments
Β (0)