meson.build: increment version number to 0.22
Time to create a new unstable branch; stable development will now continue in the branch v0.21.x
This commit is contained in:
parent
c5df879cf9
commit
f300ea62dc
2
NEWS
2
NEWS
|
@ -1,3 +1,5 @@
|
||||||
|
ver 0.22 (not yet released)
|
||||||
|
|
||||||
ver 0.21.6 (not yet released)
|
ver 0.21.6 (not yet released)
|
||||||
* protocol
|
* protocol
|
||||||
- allow loading playlists specified as absolute filesystem paths
|
- allow loading playlists specified as absolute filesystem paths
|
||||||
|
|
|
@ -30,7 +30,7 @@ master_doc = 'index'
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = 'Music Player Daemon'
|
project = 'Music Player Daemon'
|
||||||
copyright = '2003-2018 The Music Player Daemon Project'
|
copyright = '2003-2019 The Music Player Daemon Project'
|
||||||
author = 'Max Kellermann'
|
author = 'Max Kellermann'
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
|
@ -38,7 +38,7 @@ author = 'Max Kellermann'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.21.6'
|
version = '0.22'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = version
|
release = version
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
project(
|
project(
|
||||||
'mpd',
|
'mpd',
|
||||||
['c', 'cpp'],
|
['c', 'cpp'],
|
||||||
version: '0.21.6',
|
version: '0.22~git',
|
||||||
meson_version: '>= 0.47.2',
|
meson_version: '>= 0.47.2',
|
||||||
default_options: [
|
default_options: [
|
||||||
'c_std=c99',
|
'c_std=c99',
|
||||||
|
@ -20,7 +20,7 @@ conf.set_quoted('PACKAGE', meson.project_name())
|
||||||
conf.set_quoted('PACKAGE_NAME', meson.project_name())
|
conf.set_quoted('PACKAGE_NAME', meson.project_name())
|
||||||
conf.set_quoted('PACKAGE_VERSION', meson.project_version())
|
conf.set_quoted('PACKAGE_VERSION', meson.project_version())
|
||||||
conf.set_quoted('VERSION', meson.project_version())
|
conf.set_quoted('VERSION', meson.project_version())
|
||||||
conf.set_quoted('PROTOCOL_VERSION', '0.21.4')
|
conf.set_quoted('PROTOCOL_VERSION', '0.22.0')
|
||||||
conf.set_quoted('SYSTEM_CONFIG_FILE_LOCATION', join_paths(get_option('prefix'), get_option('sysconfdir'), 'mpd.conf'))
|
conf.set_quoted('SYSTEM_CONFIG_FILE_LOCATION', join_paths(get_option('prefix'), get_option('sysconfdir'), 'mpd.conf'))
|
||||||
|
|
||||||
common_cppflags = [
|
common_cppflags = [
|
||||||
|
|
Loading…
Reference in New Issue