Skip to content

Commit

Permalink
Merge pull request #289 from SrainApp/release-1.2.0
Browse files Browse the repository at this point in the history
Release 1.2.0
  • Loading branch information
SilverRainZ authored Feb 28, 2021
2 parents 500a1d4 + 2862657 commit 4cd17fb
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 4 deletions.
30 changes: 30 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,36 @@ Change Log
.. _version-latest:

.. _version-1.2.0:

2021-02-28 Version 1.2.0
========================

- Features:

- Switch build system from Make to Meson (:pull:`266`)
- Add FreeBSD implementations for ``srn_get_executable_{path,dir}``,
thanks to :people:`wahjava`
- Add ``/quote`` command for sending special IRC commands,
thanks to :people:`hno` (:pull:`283`)
- Add support for hiding server buffer (:pull:`287`)


- Bug fixes:

- Fix an use-after-free BUG (:pull:`267`)
- Fix implicit declaration error on some systems,
thanks to :people:`lgbaldoni` (:pull:`270`)

.. _version-1.1.3:

2020-10-01 Version 1.1.3
========================

- Bug fixes:

- Fix an use-after-free BUG (:pull:`267`)

.. _version-1.1.2:

2020-08-10 Version 1.1.2
Expand Down
11 changes: 11 additions & 0 deletions doc/commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,17 @@ Please refer to :ref:`faq-relay-message-transform` see its effect.
Pattern **SHOULD** consider the case where the mIRC color code is
included in the message.

/quote
------

Usage::

/quote <raw message>

For sending special IRC commands.

.. versionadded:: 1.2.0

Obsoleted Commands
==================

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1.2'
version = '1.2.0'
# The full version, including alpha/beta/rc tags.
release = '1.1.2'
release = '1.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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.1.2',
version: '1.2.0',
license: 'GPL3',
meson_version: '>= 0.45.0'
)
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ meta_h.set_quoted('PACKAGE_WEBSITE', app_url)
meta_h.set_quoted('PACKAGE_BUGREPORT', app_bugreport)
meta_h.set_quoted('PACKAGE_AUTHOR', 'Shengyu Zhang')
meta_h.set_quoted('PACKAGE_EMAIL', '[email protected]')
meta_h.set_quoted('PACKAGE_COPYRIGHT_DATES', '2016 - 2020')
meta_h.set_quoted('PACKAGE_COPYRIGHT_DATES', '2016 - 2021')
meta_h.set_quoted('PACKAGE_DATA_DIR', data_dir)
meta_h.set_quoted('PACKAGE_CONFIG_DIR', sys_conf_dir)

Expand Down

0 comments on commit 4cd17fb

Please sign in to comment.