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-03-05 20:43:39 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2019-03-08 19:09:59 +0300
commit754487c05d0a7ee18669a6e7e7355b0ae1d4e4a8 (patch)
treeb3c031da4353cb763eb8e85f5a9df6eb5cb2478e /meson.build
parentd67e3476c91d408cab8e5d7fb3f29120dadb15ed (diff)
let dav1d_version() return the project version
Increments the soname revision number for this behavior change. Removes the DAV1D_VERSION and DAV1D_VERSION_INT defines and dav1d_version_vcs() and dav1d_version_int(). Also cleans up the version usage in dav1d CLI. Refs #241, #255.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 8499ea6..3172442 100644
--- a/meson.build
+++ b/meson.build
@@ -30,7 +30,7 @@ project('dav1d', ['c'],
'b_ndebug=if-release'],
meson_version: '>= 0.47.0')
-dav1d_soname_version = '1.0.0'
+dav1d_soname_version = '1.0.1'
dav1d_version_array = dav1d_soname_version.split('.')
dav1d_version_major = dav1d_version_array[0]
dav1d_version_minor = dav1d_version_array[1]