Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <janne-vlc@jannau.net>2019-02-22 21:03:40 +0300
committerJanne Grunau <janne-vlc@jannau.net>2019-02-26 00:22:53 +0300
commite811c4767d0c698fc674e9603e1e63d15acff16e (patch)
tree1d35724c62f979be6aaa662b315cd88f05579bd6 /meson.build
parent9cb94d2941707e1973d69b9a738df4e3579407f0 (diff)
bump version to 0.2.0 and soname to 1.0.0
The soname bump is required due to API changes since the 0.1.0 release. Fixes #247.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index ce56a86..34c0eb1 100644
--- a/meson.build
+++ b/meson.build
@@ -23,14 +23,15 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
project('dav1d', ['c'],
- version: '0.1.1',
+ version: '0.2.0',
default_options: ['c_std=c99',
'warning_level=2',
'buildtype=release',
'b_ndebug=if-release'],
meson_version: '>= 0.47.0')
-dav1d_version_array = meson.project_version().split('.')
+david_soname_version = '1.0.0'
+dav1d_version_array = david_soname_version.split('.')
dav1d_version_major = dav1d_version_array[0]
dav1d_version_minor = dav1d_version_array[1]
dav1d_version_revision = dav1d_version_array[2]