diff options
author | Thomas Boerger | 2017-02-21 15:39:30 +0100 |
---|---|---|
committer | Lunny Xiao | 2017-02-21 22:39:30 +0800 |
commit | e2c8d6fcb2c4073ed5cf164d88e7b5d44d95943c (patch) | |
tree | 8684507de0adcf631eb138716c95f564cf837bff | |
parent | 1a5df9e822da793af3385b16c51721c2ecf0dec2 (diff) |
[1.0] Added 1.0.2 to changelog (#1000)v1.0.2
* Added 1.0.2 to changelog
* Raised version to 1.0.2
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | main.go | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 56de5d916..d9222ba62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.0.2](https://github.com/go-gitea/gitea/releases/tag/v1.0.2) - 2017-02-21 + +* BUGFIXES + * Fixed issue counter [#882](https://github.com/go-gitea/gitea/pull/882) + * Fixed XSS vulnerability on wiki page [#955](https://github.com/go-gitea/gitea/pull/955) + * Add data dir without session to dump [#587](https://github.com/go-gitea/gitea/pull/587) + * Fixed wiki page renaming [#958](https://github.com/go-gitea/gitea/pull/958) + * Drop default console logger if not required [#960](https://github.com/go-gitea/gitea/pull/960) + * Fixed docker docs link on install page [#972](https://github.com/go-gitea/gitea/pull/972) + * Handle SetModel errors [#957](https://github.com/go-gitea/gitea/pull/957) + * Fixed XSS vulnerability on milestones [#977](https://github.com/go-gitea/gitea/pull/977) + * Fixed XSS vulnerability on alerts [#981](https://github.com/go-gitea/gitea/pull/981) + ## [1.0.1](https://github.com/go-gitea/gitea/releases/tag/v1.0.1) - 2017-01-05 * BUGFIXES @@ -18,7 +18,7 @@ import ( ) // Version holds the current Gitea version -var Version = "1.0.0+dev" +var Version = "1.0.2+dev" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) |