Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
Prepare 1.29.0-rev1
Browse files Browse the repository at this point in the history
  • Loading branch information
tdiesler committed Sep 1, 2021
1 parent f76f5bd commit abf7cd7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 10 deletions.
18 changes: 18 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# v1.29.0-rev1

Released: 31-Aug-2021

This is a major feature update and bug fix release.

* Upgrade to cardano-node-1.29.0 ([#73][73])
* Additional RTS flags for optimization of memory usage ([#67][67])
* Add support for RTS options in docker run ([#68][68])
* cardano-cli cannot parse script-data-value with spaces ([#69][69])

[67]: https://github.com/tdiesler/nessus-cardano/issues/67
[68]: https://github.com/tdiesler/nessus-cardano/issues/68
[69]: https://github.com/tdiesler/nessus-cardano/issues/69
[73]: https://github.com/tdiesler/nessus-cardano/issues/73

For details see [v1.29.0-rev1](https://github.com/tdiesler/nessus-cardano/issues?q=milestone%3Av1.29.0-rev1)

# v1.28.0-rev1

Released: 21-Jul-2021
Expand Down
16 changes: 6 additions & 10 deletions vps/aws-centos8.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,12 @@ EOF
### Install Docker

```
sudo yum install -y yum-utils
sudo yum-config-manager --add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
sudo yum install -y docker-ce docker-ce-cli containerd.io
sudo systemctl enable docker
sudo systemctl start docker
sudo usermod -aG docker $USER
sudo yum install -y yum-utils \
&& sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo \
&& sudo yum install -y docker-ce docker-ce-cli containerd.io \
&& sudo systemctl enable docker \
&& sudo systemctl start docker \
&& sudo usermod -aG docker $USER
docker ps
```
Expand Down

0 comments on commit abf7cd7

Please sign in to comment.