summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2019-02-11 13:25:14 +0100
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2019-02-11 13:27:25 +0100
commit5d2cf8fc2149b9b632aafcde59734a7ea74f2b92 (patch)
tree6a3346b4c4aa2564586ae49ad6b9891eb54b995a
parent6240ad15c67ff33f4a05831711cae23be7d51733 (diff)
Bump version to 0.38.0pixman-0.38.0
And update RELEASING for the new meson build system. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
-rw-r--r--RELEASING4
-rw-r--r--configure.ac4
-rw-r--r--meson.build2
3 files changed, 5 insertions, 5 deletions
diff --git a/RELEASING b/RELEASING
index 657857d..e104bda 100644
--- a/RELEASING
+++ b/RELEASING
@@ -10,8 +10,8 @@ Here are the steps to follow to create a new pixman release:
git log master...origin (no output; note: *3* dots)
-2) Increment pixman_(major|minor|micro) in configure.ac according to
- the directions in that file.
+2) Increment pixman_(major|minor|micro) in configure.ac and meson.build
+ according to the directions in those files.
3) Make sure that new version works, including
diff --git a/configure.ac b/configure.ac
index 6f6bd7e..6efc6c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -53,8 +53,8 @@ AC_PREREQ([2.57])
#
m4_define([pixman_major], 0)
-m4_define([pixman_minor], 37)
-m4_define([pixman_micro], 1)
+m4_define([pixman_minor], 38)
+m4_define([pixman_micro], 0)
m4_define([pixman_version],[pixman_major.pixman_minor.pixman_micro])
diff --git a/meson.build b/meson.build
index aaecc7b..fe77893 100644
--- a/meson.build
+++ b/meson.build
@@ -21,7 +21,7 @@
project(
'pixman',
['c'],
- version : '0.37.1',
+ version : '0.38.0',
license : 'MIT',
meson_version : '>= 0.47.2',
default_options : ['buildtype=debugoptimized'],