summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Chaplin <stevech1097@yahoo.com.au>2010-05-20 20:07:36 +0800
committerSteve Chaplin <stevech1097@yahoo.com.au>2010-05-20 20:07:36 +0800
commit3228ab7d3ae6495691676b0bdfe6fe39f7bd5c32 (patch)
treeab93ca167207facf57ec651fbaadbb25989bcab1
parent4bdc290959c4464016083bce16a37ef1c0527c82 (diff)
downloadpy2cairo-3228ab7d3ae6495691676b0bdfe6fe39f7bd5c32.tar.gz
Increase version to 1.8.11
-rw-r--r--RELEASING6
-rw-r--r--configure.ac2
-rwxr-xr-xsetup.py2
-rw-r--r--wscript2
4 files changed, 6 insertions, 6 deletions
diff --git a/RELEASING b/RELEASING
index eca8380..87bb14d 100644
--- a/RELEASING
+++ b/RELEASING
@@ -32,7 +32,7 @@ It's especially important to mention the new version number in the git commit
comment.
Add a '=== Pycairo x.x.x ===' header.
-$ git tag v X.Y.Z
+$ git tag X.Y.Z
push the changes to the freedesktop server.
$ git push origin master
@@ -58,8 +58,8 @@ $ git push origin master
configure.ac
setup.py
wscript
- to increment pycairo_version_micro to the next larger (odd) number and
- commit.
+ to increment pycairo_version_micro to the next larger (odd) number.
+$ git push origin master
8) Send a message to cairo-announce@cairographics.org
and CC python-announce-list@python.org
diff --git a/configure.ac b/configure.ac
index 8eacbde..e714839 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ AC_PREREQ(2.59)
# the pycairo version number
m4_define(pycairo_version_major, 1)
m4_define(pycairo_version_minor, 8)
-m4_define(pycairo_version_micro, 10)
+m4_define(pycairo_version_micro, 11)
m4_define(pycairo_version, pycairo_version_major.pycairo_version_minor.pycairo_version_micro)
# versions of packages we require
diff --git a/setup.py b/setup.py
index c8f86d0..0d9d0c2 100755
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ import os
import subprocess
import sys
-pycairo_version = '1.8.10'
+pycairo_version = '1.8.11'
cairo_version_required = '1.8.10'
pkgconfig_file = 'pycairo.pc'
config_file = 'src/config.h'
diff --git a/wscript b/wscript
index a0b1894..2d631f8 100644
--- a/wscript
+++ b/wscript
@@ -3,7 +3,7 @@
import os
APPNAME='pycairo'
-VERSION='1.8.10'
+VERSION='1.8.11'
cairo_version_required = '1.8.10'
srcdir = '.'
blddir = '../%s-build' % APPNAME