Skip to content

Commit

Permalink
Merge pull request #347 from SrainApp/release-1.3.1
Browse files Browse the repository at this point in the history
Release 1.3.1
  • Loading branch information
SilverRainZ authored Dec 18, 2021
2 parents 6c45630 + 551325a commit 9384edb
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 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.3.1" date="2021-12-18">
<url>https://doc.srain.im/en/latest/changelog.html#version-1-3-1</url>
</release>
<release version="1.3" date="2021-09-21">
<url>https://doc.srain.im/en/latest/changelog.html#version-1-3-0</url>
</release>
Expand Down
11 changes: 11 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ Change Log
.. _version-latest:

.. _version-1.3.1:

2021-12-18 Version 1.3.1
========================

- Bug fixes:

- Fix build of macOS (:pull:`339`), by @SilverRainZ
- Make channel messages with origin out of channels can be shown (:pull:`336`), by @progval
- Rejoin channels after NICKSERV authentication finishes (:issue:`274`), by @SilverRainZ

.. _version-1.3:

2021-09-23 Version 1.3.0
Expand Down
14 changes: 7 additions & 7 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@

# General information about the project.
project = 'Srain'
copyright = '2017, Shengyu Zhang'
copyright = '2021, Shengyu Zhang'
author = 'Shengyu Zhang'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '1.3.0'
version = '1.3.1'
# The full version, including alpha/beta/rc tags.
release = '1.3.0'
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -175,12 +175,12 @@
extensions.append('sphinx.ext.extlinks')

extlinks = {
'issue': ('https://github.com/SrainApp/srain/issues/%s', 'srain#'),
'pull': ('https://github.com/SrainApp/srain/pull/%s', 'srain#'),
'issue': ('https://github.com/SrainApp/srain/issues/%s', '#'),
'pull': ('https://github.com/SrainApp/srain/pull/%s', '#'),
'commit': ('https://github.com/SrainApp/srain/commit/%s', ''),

'contrib-issue': ('https://github.com/SrainApp/srain-contrib/issues/%s', 'srain-contrib#'),
'contrib-pull': ('https://github.com/SrainApp/srain-contrib/pull/%s', 'srain-contrib#'),
'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', ''),

'people': ('https://github.com/%s', '@'),
Expand Down
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.3.0',
version: '1.3.1',
license: 'GPL3',
meson_version: '>= 0.45.0'
)
Expand Down

0 comments on commit 9384edb

Please sign in to comment.