diff --git a/data/metainfo/srain.metainfo.xml.in.in b/data/metainfo/srain.metainfo.xml.in.in index 65c23668..2c9549a1 100644 --- a/data/metainfo/srain.metainfo.xml.in.in +++ b/data/metainfo/srain.metainfo.xml.in.in @@ -68,6 +68,9 @@ + + https://srain.silverrainz.me/changelog.html#version-1-5-0 + https://srain.silverrainz.me/changelog.html#version-1-4-1 diff --git a/docs/changelog.rst b/docs/changelog.rst index 5d651c1c..0e88481a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -14,7 +14,7 @@ Change Log YYYY-MM-DD Version X.X.X ======================== - .. post:: YYYY-MM-DD + .. post:: YYYY-MM-DD :category: Release - Features: @@ -33,6 +33,56 @@ Change Log .. _version-latest: +.. _version-1.5.0: + +2022-10-02 Version 1.5.0 +======================== + +.. post:: 2022-10-02 + :category: Release + +- Features: + + - Able to identify `Nordic GTK Theme`__ as dark theme (:pull:`372`) + - Activate the corresponding buffer to a response user query (:issue:`381`) + +- Changes: + + - No additional sphinx extensions are required to build documentation (:issue:`368`) + - Cleanup deprecated APIs (:pull:`369`) + - Suppress error message when connection keeps failing (:pull:`386`) + - Enable debian release build , thanks to @tomac4t (:issue:`387`) + +- Bug fixes: + + - Fix SASL authentication error when connecting to Soju__ (:issue:`371`) + +__ https://github.com/EliverLara/Nordic +__ https://soju.im/ + +.. _version-1.4.2: + +2022-10-02 Version 1.4.2 +======================== + +.. post:: 2022-10-02 + :category: Release + +- Backport :issue:`371` + +.. _version-1.3.3: + +2022-10-02 Version 1.3.3 +======================== + +.. post:: 2022-10-02 + :category: Release + +- Backport domain name change, see :ref:`version-1.4.0` +- Backport :issue:`371` + +.. _version-1.4.1: + 2022-07-30 Version 1.4.1 ======================== diff --git a/docs/conf.py b/docs/conf.py index aba33b95..ed033497 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ # built documents. # # The short X.Y version. -version = '1.4.1' +version = '1.5.0' # The full version, including alpha/beta/rc tags. release = version @@ -189,16 +189,16 @@ extensions.append('sphinx.ext.extlinks') extlinks = { - 'issue': ('https://github.com/SrainApp/srain/issues/%s', '#'), - 'pull': ('https://github.com/SrainApp/srain/pull/%s', '#'), - 'commit': ('https://github.com/SrainApp/srain/commit/%s', ''), + 'issue': ('https://github.com/SrainApp/srain/issues/%s', '#%s'), + 'pull': ('https://github.com/SrainApp/srain/pull/%s', '#%s'), + 'commit': ('https://github.com/SrainApp/srain/commit/%s', '%s'), - 'contrib-issue': ('https://github.com/SrainApp/srain-contrib/issues/%s', 'contrib#'), - 'contrib-pull': ('https://github.com/SrainApp/srain-contrib/pull/%s', 'contrib#'), - 'contrib-commit': ('https://github.com/SrainApp/srain/commit/%s', ''), + 'contrib-issue': ('https://github.com/SrainApp/contrib/issues/%s', 'contrib#%s'), + 'contrib-pull': ('https://github.com/SrainApp/contrib/pull/%s', 'contrib#%s'), + 'contrib-commit': ('https://github.com/SrainApp/srain/commit/%s', '%s'), - 'people': ('https://github.com/%s', '@'), - 'ghrepo': ('https://github.com/%s', '⛺'), + 'people': ('https://github.com/%s', '@%s'), + 'ghrepo': ('https://github.com/%s', '⛺ %s'), } if CI: diff --git a/docs/prefs.rst b/docs/prefs.rst index a0a66298..bfe7071e 100644 --- a/docs/prefs.rst +++ b/docs/prefs.rst @@ -1 +1,3 @@ +:orphan: + Redirect to :doc:`config`. diff --git a/meson.build b/meson.build index 55a959d1..f1e93ee7 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project( 'srain', 'c', - version: '1.4.1', + version: '1.5.0', license: 'GPL3', meson_version: '>= 0.47.0' )