Bump version to 1.0.1

This commit is contained in:
Tom Andrade 2019-05-01 16:49:12 +02:00
parent b9771a638a
commit 70bf7b0406
Signed by: wolvie
GPG Key ID: 31AAB07872E82669
2 changed files with 15 additions and 1 deletions

View File

@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
## 2019-05-01 - 1.0.1
### Added
- Reorder variables
- Improved documentation
- Move internal error handling into his own func
- Improve formating/readability
- Remove fmt module
- Improved error logging
- Refactor global variables
- Optimize port check
- Improve cli input validation
## 2019-04-29 - 1.0.0 ## 2019-04-29 - 1.0.0
### Added ### Added

View File

@ -28,7 +28,7 @@ const (
letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
letterIdxMax = 63 / letterIdxBits // # of letter indices fitting in 63 bits letterIdxMax = 63 / letterIdxBits // # of letter indices fitting in 63 bits
) )
const appVersion = "1.0.0" const appVersion = "1.0.1"
var src = rand.NewSource(time.Now().UnixNano()) var src = rand.NewSource(time.Now().UnixNano())
var pool = cache.New(240*time.Hour, 1*time.Hour) var pool = cache.New(240*time.Hour, 1*time.Hour)