bump: 0.2.1

This commit is contained in:
0xMRTT 2023-05-13 14:46:38 +02:00
parent 60169ba940
commit 61de030107
Signed by: 0xMRTT
GPG Key ID: 19C1449A774028BD
2 changed files with 14 additions and 4 deletions

View File

@ -59,6 +59,16 @@
</keywords>
<releases>
<release version="0.2.1" date="2023-5-13" type="stable">
<description>
<p>Fix Theming support of the new render widget</p>
<p>Add the ability to have multiple windows open at the same time</p>
<p>Update preferences UI</p>
<p>Fix some bugs</p>
<p>Update translations</p>
<p>Add better error handling</p>
</description>
</release>
<release version="0.2.0" date="2023-5-11" type="stable">
<description>
<p>Add support of formatting in the response view using Markdown</p>

View File

@ -1,5 +1,5 @@
project('bavarder',
version: '0.2.0',
version: '0.2.1',
meson_version: '>= 0.62.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)
@ -10,11 +10,11 @@ python = import('python')
# Constants
PROJECT_RDNN_NAME = 'io.github.Bavarder.Bavarder'
BUGTRACKER_URL = 'https://github.com/Bavarder/Bavarder/issues'
HELP_URL = 'https://github.com/Bavarder/Bavarder/issues'
BUGTRACKER_URL = 'https://codeberg.org/Bavarder/Bavarder/issues'
HELP_URL = 'https://codeberg.orgBavarder/Bavarder/issues'
TRANSLATE_URL = 'https://translate.codeberg.org/engage/bavarder/'
PROJECT_URL = 'https://github.com/Bavarder'
PROJECT_URL = 'https://bavarder.codeberg.page'
git_bin = find_program('git', required: false)