Skip to content

Commit

Permalink
Merge pull request #1397 from aeternity/release-preparation
Browse files Browse the repository at this point in the history
Release preparation
  • Loading branch information
lucafavatella committed Aug 1, 2018
2 parents 786101f + f82f72a commit 87dc33e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.18.0
0.19.0
2 changes: 1 addition & 1 deletion apps/aehttp/priv/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"swagger" : "2.0",
"info" : {
"description" : "This is the [Aeternity](https://www.aeternity.com/) Epoch API.",
"version" : "0.18.0",
"version" : "0.19.0",
"title" : "Aeternity Epoch",
"termsOfService" : "https://www.aeternity.com/terms/",
"contact" : {
Expand Down
2 changes: 1 addition & 1 deletion config/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ swagger: '2.0'
openapi: '3.0.0'
info:
description: 'This is the [Aeternity](https://www.aeternity.com/) Epoch API.'
version: 0.18.0
version: 0.19.0
title: Aeternity Epoch
termsOfService: 'https://www.aeternity.com/terms/'
contact:
Expand Down
4 changes: 2 additions & 2 deletions docs/cuda-miner.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The release packages do not ship with a CUDA miner, but you can build it yoursel
- Epoch node configuration

The documentation below is tested on:
- Epoch version 0.17.0
- Epoch version 0.19.0
- CUDA toolkit version 9.2
- AWS p2.xlarge instance with 16GB EBS
- Ubuntu 16.04.4
Expand Down Expand Up @@ -41,7 +41,7 @@ Epoch source code can be downloaded by cloning the git repository:
```bash
cd ~
git clone https://github.com/aeternity/epoch.git epoch && cd epoch
git checkout tags/v0.17.0
git checkout tags/v0.19.0
```

The documentation below assumes that the `epoch` source code resides in `~/epoch` directory.
Expand Down
4 changes: 2 additions & 2 deletions docs/release-notes/RELEASE-NOTES-0.19.0.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# About this release

[This release][this-release] is focused on TODOFILLMEIN.
[This release][this-release] is focused on smart contracts in state channels.
It:
* Removes `key_hash` field from micro blocks. This impacts consensus.
* Fixes a bug when a trusted peer changes its IP, it was crashing instead of just ignoring the change.
* Fine-tunes deposit and withdrawal channel transactions being produced for the user.
This does not impact channels' protocol
* Adds export command to epoch. The chain can be exported in a binary format (Erlang disk_log of serialized blocks) using the command `epoch export FILENAME`. The first record in the log is a map containing the genesis hash, the hostname and the date and time; the blocks are stored from top to genesis.
* Adds export command to epoch. The chain can be exported in a binary format (Erlang disk_log of serialized blocks) using the command `bin/epoch export FILENAME`. The first record in the log is a map containing the genesis hash, the hostname and the date and time; the blocks are stored from top to genesis.
* Refines status code 400 as 404 for call object retrieval API `/tx/{tx_hash}/contract-call` when transaction still pending.
* Adds a database table for caching state channel data on disk
* Fixes commitment hash calculations in naming system, to be `Hash(NameHash(name) + name_salt)` instead of `Hash(Hash(name + name_salt))`. This impacts consensus.
Expand Down

0 comments on commit 87dc33e

Please sign in to comment.