Skip to content

Commit

Permalink
v0.8.0-rc5
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasDP committed Dec 3, 2019
1 parent 8f88194 commit cecea4d
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 17 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Change Log

## [v0.8.0-rc5](https://github.com/input-output-hk/jormungandr/tree/v0.8.0-rc5) (2019-12-03)

[Full Changelog](https://github.com/input-output-hk/jormungandr/compare/v0.8.0-rc4...v0.8.0-rc5)

**Breaking changes:**

- change how to set the reward account in the jcli command line parameter [\#1259](https://github.com/input-output-hk/jormungandr/pull/1259)

**Implemented enhancements:**

- detect node's environment/system settings at boot or on demand [\#1215](https://github.com/input-output-hk/jormungandr/issues/1215)
- return stake-pools public VRF key [\#1163](https://github.com/input-output-hk/jormungandr/issues/1163)
- fix reward distribution and expose the rewards in the REST API [\#1269](https://github.com/input-output-hk/jormungandr/pull/1269)
- Add version to REST node stats [\#1265](https://github.com/input-output-hk/jormungandr/pull/1265)
- Resolve the ancestor once for chain streaming [\#1258](https://github.com/input-output-hk/jormungandr/pull/1258)
- Don't panic on network task error [\#1255](https://github.com/input-output-hk/jormungandr/pull/1255)
- Expose resource usage limits on UNIX systems [\#1222](https://github.com/input-output-hk/jormungandr/pull/1222)

**Fixed bugs:**

- 0.8 rc4 - standalone delegators not getting paid rewards after pool owners/operators got their tax cut [\#1250](https://github.com/input-output-hk/jormungandr/issues/1250)
- fix rlimit builds on different libc impls [\#1267](https://github.com/input-output-hk/jormungandr/pull/1267)
- Yield the task after retrieving each block to send [\#1264](https://github.com/input-output-hk/jormungandr/pull/1264)
- don't fail on error in the client task [\#1249](https://github.com/input-output-hk/jormungandr/pull/1249)

**Closed issues:**

- logging improvement epoch.block time [\#1251](https://github.com/input-output-hk/jormungandr/issues/1251)

**Merged pull requests:**

- Rest node stats REST cert fees [\#1266](https://github.com/input-output-hk/jormungandr/pull/1266)
- add documentation regarding the stake pool Tax [\#1257](https://github.com/input-output-hk/jormungandr/pull/1257)

## [v0.8.0-rc4](https://github.com/input-output-hk/jormungandr/tree/v0.8.0-rc4) (2019-12-02)

[Full Changelog](https://github.com/input-output-hk/jormungandr/compare/v0.8.0-rc3...v0.8.0-rc4)
Expand Down
24 changes: 12 additions & 12 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 jcli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jcli"
version = "0.8.0-rc4"
version = "0.8.0-rc5"
authors = [ "dev@iohk.io" ]
license = "MIT OR Apache-2.0"
repository = "https://github.com/input-output-hk/jormungandr"
Expand Down
2 changes: 1 addition & 1 deletion jormungandr-integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jormungandr-integration-tests"
version = "0.8.0-r4"
version = "0.8.0-r5"
authors = [ "dev@iohk.io" ]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion jormungandr-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jormungandr-lib"
version = "0.8.0-rc4"
version = "0.8.0-rc5"
authors = ["dev@iohk.io"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion jormungandr-scenario-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jormungandr-scenario-tests"
version = "0.8.0-rc4"
version = "0.8.0-rc5"
authors = [ "dev@iohk.io" ]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion jormungandr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jormungandr"
version = "0.8.0-rc4"
version = "0.8.0-rc5"
authors = [ "dev@iohk.io" ]
license = "MIT OR Apache-2.0"
repository = "https://github.com/input-output-hk/jormungandr"
Expand Down

0 comments on commit cecea4d

Please sign in to comment.