summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'],