Skip to content

Commit a93d4f6

Browse files
committed
v0.7.0
1 parent 566d46e commit a93d4f6

File tree

7 files changed

+62
-17
lines changed

7 files changed

+62
-17
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# Change Log
22

3+
## [v0.7.0](https://github.com/input-output-hk/jormungandr/tree/v0.7.0) (2019-11-12)
4+
[Full Changelog](https://github.com/input-output-hk/jormungandr/compare/v0.7.0-rc7...v0.7.0)
5+
6+
**Implemented enhancements:**
7+
8+
- Allow setting multiple stake pool for delegation [\#1089](https://github.com/input-output-hk/jormungandr/issues/1089)
9+
- Leeway for schedule to happen [\#1114](https://github.com/input-output-hk/jormungandr/pull/1114)
10+
- Allow setting multiple stake pool for delegation [\#1112](https://github.com/input-output-hk/jormungandr/pull/1112)
11+
- leadership re-write [\#1106](https://github.com/input-output-hk/jormungandr/pull/1106)
12+
- Properly filter checkpoints for given descendant [\#1100](https://github.com/input-output-hk/jormungandr/pull/1100)
13+
- breaking change: add pool permission + operators [\#1097](https://github.com/input-output-hk/jormungandr/pull/1097)
14+
- Start improving the readability of this document. [\#1083](https://github.com/input-output-hk/jormungandr/pull/1083)
15+
16+
**Fixed bugs:**
17+
18+
- explorer panic [\#1103](https://github.com/input-output-hk/jormungandr/issues/1103)
19+
- node panicked - "cannot process leadership block" - cluster with 2 nodes on local pc; v0.7.0-rc4 [\#1065](https://github.com/input-output-hk/jormungandr/issues/1065)
20+
- error while streaming response: Error { code: Internal, cause: CannotIterate }, sub\_task: server, task: network [\#1056](https://github.com/input-output-hk/jormungandr/issues/1056)
21+
- Excessive network/memory usage [\#1044](https://github.com/input-output-hk/jormungandr/issues/1044)
22+
- Invalid block should not unwrap on the chain task and panic [\#1024](https://github.com/input-output-hk/jormungandr/issues/1024)
23+
- Large amount of network traffic in short time frame. [\#1007](https://github.com/input-output-hk/jormungandr/issues/1007)
24+
- Leeway for schedule to happen [\#1114](https://github.com/input-output-hk/jormungandr/pull/1114)
25+
- leadership re-write [\#1106](https://github.com/input-output-hk/jormungandr/pull/1106)
26+
- Fix blocks in epoch first cursor not being 0 [\#1096](https://github.com/input-output-hk/jormungandr/pull/1096)
27+
28+
**Closed issues:**
29+
30+
- Panic in jormungandr 0.7.0-rc7 [\#1105](https://github.com/input-output-hk/jormungandr/issues/1105)
31+
- Re-open \#1094 [\#1104](https://github.com/input-output-hk/jormungandr/issues/1104)
32+
- Port to Rust 2018 edition [\#1098](https://github.com/input-output-hk/jormungandr/issues/1098)
33+
- Error in the overall configuration of the node |-\> Error while parsing the node configuration file: p2p.trusted\_peers\[0\].id: Odd number of digits at line 13 column 11 |-\> p2p.trusted\_peers\[0\].id: Odd number of digits at line 13 column 11 [\#1094](https://github.com/input-output-hk/jormungandr/issues/1094)
34+
- Mined transactions are not propagated to other nodes - RC5, local cluster with 2 nodes [\#1090](https://github.com/input-output-hk/jormungandr/issues/1090)
35+
- Transactions not propagating [\#1042](https://github.com/input-output-hk/jormungandr/issues/1042)
36+
- Sync issues not fully resolved [\#1031](https://github.com/input-output-hk/jormungandr/issues/1031)
37+
38+
**Merged pull requests:**
39+
40+
- breaking change: add discriminant account signature and reward account [\#1116](https://github.com/input-output-hk/jormungandr/pull/1116)
41+
- Port Jormungandr to 2018 edition [\#1115](https://github.com/input-output-hk/jormungandr/pull/1115)
42+
- fixed create-account-and-delegate.shtmpl to work with 0.7.0-rc7 [\#1111](https://github.com/input-output-hk/jormungandr/pull/1111)
43+
- Add old utxo and old address to explorer [\#1109](https://github.com/input-output-hk/jormungandr/pull/1109)
44+
- Update Quick-Start in public mode section [\#1108](https://github.com/input-output-hk/jormungandr/pull/1108)
45+
- Simplify Storage::stream\_from\_to [\#1102](https://github.com/input-output-hk/jormungandr/pull/1102)
46+
- registering\_stake\_pool.md: do not longer sign the cert [\#1101](https://github.com/input-output-hk/jormungandr/pull/1101)
47+
348
## [v0.7.0-rc7](https://github.com/input-output-hk/jormungandr/tree/v0.7.0-rc7) (2019-11-08)
449
[Full Changelog](https://github.com/input-output-hk/jormungandr/compare/v0.7.0-rc6...v0.7.0-rc7)
550

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jcli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jcli"
3-
version = "0.7.0-rc7"
3+
version = "0.7.0"
44
authors = [ "[email protected]" ]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/input-output-hk/jormungandr"

jormungandr-integration-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr-integration-tests"
3-
version = "0.7.0-rc7"
3+
version = "0.7.0"
44
authors = [ "[email protected]" ]
55
edition = "2018"
66

jormungandr-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr-lib"
3-
version = "0.7.0-rc7"
3+
version = "0.7.0"
44
authors = ["[email protected]"]
55
edition = "2018"
66

jormungandr-scenario-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr-scenario-tests"
3-
version = "0.7.0-rc7"
3+
version = "0.7.0"
44
authors = [ "[email protected]" ]
55
edition = "2018"
66

jormungandr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr"
3-
version = "0.7.0-rc7"
3+
version = "0.7.0"
44
authors = [ "[email protected]" ]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/input-output-hk/jormungandr"

0 commit comments

Comments
 (0)