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" )