Add changelog entries for 0.3.1 and bump version in CLI
This commit is contained in:
parent
342a547fde
commit
de571c304d
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,12 +1,22 @@
|
|||
## 0.4.0 (Unreleased)
|
||||
## 0.3.1 (October 6, 2015)
|
||||
|
||||
SECURITY:
|
||||
|
||||
* core: In certain failure scenarios, the full values of requests and responses would be logged [GH-665]
|
||||
|
||||
FEATURES:
|
||||
|
||||
* **Settable Maximum Open Connections**: The `mysql` and `postgresql` backends now allow setting the number of maximum open connections to the database, which was previously capped to 2. [GH-661]
|
||||
* **Renewable Tokens for GitHub**: The `github` backend now supports specifying a TTL, enabling renewable tokens. [GH-664]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* dist: linux-amd64 distribution was dynamically linked [GH-656]
|
||||
* credential/github: Fix acceptance tests [GH-651]
|
||||
|
||||
MISC:
|
||||
|
||||
* Various minor documentation fixes and improvements [GH-649] [GH-650]
|
||||
* Various minor documentation fixes and improvements [GH-649] [GH-650] [GH-654] [GH-663]
|
||||
|
||||
## 0.3.0 (September 28, 2015)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ var GitCommit string
|
|||
var GitDescribe string
|
||||
|
||||
// The main version number that is being run at the moment.
|
||||
const Version = "0.3.0"
|
||||
const Version = "0.3.1"
|
||||
|
||||
// A pre-release marker for the version. If this is "" (empty string)
|
||||
// then it means that it is a final release. Otherwise, this is a pre-release
|
||||
|
|
Loading…
Reference in New Issue