Skip to content

Commit

Permalink
Merge pull request #388 from SrainApp/release-1.5.0
Browse files Browse the repository at this point in the history
Release 1.5.0
  • Loading branch information
SilverRainZ authored Oct 2, 2022
2 parents c2aa56a + 2aded86 commit ed438ea
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 11 deletions.
3 changes: 3 additions & 0 deletions data/metainfo/srain.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
</content_rating>

<releases>
<release version="1.5.0" date="2022-10-30">
<url>https://srain.silverrainz.me/changelog.html#version-1-5-0</url>
</release>
<release version="1.4.1" date="2022-07-30">
<url>https://srain.silverrainz.me/changelog.html#version-1-4-1</url>
</release>
Expand Down
52 changes: 51 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Change Log
YYYY-MM-DD Version X.X.X
========================
.. post:: YYYY-MM-DD
.. post:: YYYY-MM-DD
:category: Release
- Features:
Expand All @@ -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
========================

Expand Down
18 changes: 9 additions & 9 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions docs/prefs.rst
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
:orphan:

Redirect to :doc:`config`.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

project(
'srain', 'c',
version: '1.4.1',
version: '1.5.0',
license: 'GPL3',
meson_version: '>= 0.47.0'
)
Expand Down

0 comments on commit ed438ea

Please sign in to comment.