version 2.6.

This commit is contained in:
Miroslav Šedivý 2022-06-17 21:15:57 +02:00
parent 7d71fd2bc6
commit fe5a2f9ee7
2 changed files with 3 additions and 1 deletions

View File

@ -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]+):/`.

View File

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