From fe5a2f9ee708b762129231806c6a597a94d27cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Fri, 17 Jun 2022 21:15:57 +0200 Subject: [PATCH] version 2.6. --- docs/changelog.md | 2 ++ server/neko.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 7e4ec24..a51fc57 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,8 @@ ## master branch +## [n.eko v2.6](https://github.com/m1k1o/neko/releases/tag/v2.6) + ### Bugs - Fixed fullscreen incompatibility for Safari [#121](https://github.com/m1k1o/neko/issues/121). - Fixed bad emoji matching for e.g. `:+1:` and `:100:` with new regex `/^:([^:\s]+):/`. diff --git a/server/neko.go b/server/neko.go index 227c6b2..43dc949 100644 --- a/server/neko.go +++ b/server/neko.go @@ -39,7 +39,7 @@ var ( // Major version when you make incompatible API changes, major = "2" // Minor version when you add functionality in a backwards-compatible manner, and - minor = "5" + minor = "6" // Patch version when you make backwards-compatible bug fixes. patch = "0" )