diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a62542c5a..19d8f0f7b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,23 @@ Version History --------------- +May 2018: + +v1.3.3 (patch release) +- Add Streaming API endpoints +- Faster contract formation +- Improved wallet scaling + March 2018: -v1.3.2 (minor release) +v1.3.2 (patch release) - Improve renter throughput and stability - Reduce host I/O when idle - Add /tpool/confirmed endpoint December 2017: -v1.3.1 (minor release) +v1.3.1 (patch release) - Add new efficient, reliable contract format - Faster and smoother file repairs - Fix difficulty adjustment hardfork diff --git a/README.md b/README.md index 547c1fc05b..e5e6a6d0cd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# [![Sia Logo](http://sia.tech/img/svg/sia-green-logo.svg)](http://sia.tech) v1.3.2 (Capricorn) +# [![Sia Logo](http://sia.tech/img/svg/sia-green-logo.svg)](http://sia.tech) v1.3.3 (Capricorn) [![Build Status](https://travis-ci.org/NebulousLabs/Sia.svg?branch=master)](https://travis-ci.org/NebulousLabs/Sia) [![GoDoc](https://godoc.org/github.com/NebulousLabs/Sia?status.svg)](https://godoc.org/github.com/NebulousLabs/Sia) diff --git a/build/version.go b/build/version.go index 3442c61eb7..6cf8585f79 100644 --- a/build/version.go +++ b/build/version.go @@ -14,7 +14,7 @@ const ( MaxEncodedVersionLength = 100 // Version is the current version of siad. - Version = "1.3.2" + Version = "1.3.3" ) // IsVersion returns whether str is a valid version number.