diff --git a/data/metainfo/srain.metainfo.xml.in.in b/data/metainfo/srain.metainfo.xml.in.in index 27f64c57..a35529d4 100644 --- a/data/metainfo/srain.metainfo.xml.in.in +++ b/data/metainfo/srain.metainfo.xml.in.in @@ -68,6 +68,9 @@ + + https://doc.srain.im/en/latest/changelog.html#version-1-3-0 + https://doc.srain.im/en/latest/changelog.html#version-1-2-4 diff --git a/doc/changelog.rst b/doc/changelog.rst index f51e9fad..e290fc8b 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -30,6 +30,22 @@ Change Log .. _version-latest: +.. _version-1.3: + +2021-09-23 Version 1.3.0 +======================== + +- Features: + + - Implement ISUPPORT parsing + the UTF8ONLY IRCv3 specification (:pull:`331`), thanks to @progval + - Add support for RPL_UMODEIS (:pull:`331`), thanks to @progval + - Make nick completion case-insensitive (:pull:`333`), thanks to @progval + - Add button for inserting emoji (:issue:`279`) + +- Bug fixes: + + - Fix configuration syntax errors caused by trailing commas (:pull:`330`), thanks to @progval + .. _version-1.2.4: 2021-07-18 Version 1.2.4 diff --git a/doc/conf.py b/doc/conf.py index 51ad758b..28c9756f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '1.2.0' +version = '1.3.0' # The full version, including alpha/beta/rc tags. -release = '1.2.0' +release = '1.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/meson.build b/meson.build index 7e755044..de1da071 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project( 'srain', 'c', - version: '1.2.4', + version: '1.3.0', license: 'GPL3', meson_version: '>= 0.45.0' )