updating versions for 2.2.0 beta 4
authorSteve Singer <ssinger@ca.afilias.info>
Thu, 6 Jun 2013 20:10:11 +0000 (16:10 -0400)
committerSteve Singer <ssinger@ca.afilias.info>
Thu, 6 Jun 2013 20:10:11 +0000 (16:10 -0400)
RELEASE
config.h.in
config_msvc.h
configure.ac
src/backend/slony1_funcs.sql

diff --git a/RELEASE b/RELEASE
index 2c63be3b7f941b06dfe83da9f3fff8d23da72ce3..be03be66d8f39ee148b50dadf71ddbe20a1e5ad8 100644 (file)
--- a/RELEASE
+++ b/RELEASE
@@ -1,6 +1,8 @@
 #+OPTIONS: ^:{}
 * Slony-I Release Notes
 
+*** 2.2.0 b4
+
 - Bug 286 :: Support to compile against PG 9.3
 
 - Bug 287 :: Fix UPDATE FUNCTIONS so it works when the old shared library is no longer around
index 76358b992a728284e9f7557e553f7bc0bec87862..bf499bcdb7f164502271e35a15b1cf165a933460 100644 (file)
@@ -12,9 +12,9 @@
 #ifndef        SLONY_I_CONFIG_H
 #define SLONY_I_CONFIG_H
 
-#define SLONY_I_VERSION_STRING "2.2.0.b3"
-#define SLONY_I_VERSION_STRING_DEC 2,2,0,b3
-#define SLONY_I_FUNC_VERSION_STRING 2_2_0_b3
+#define SLONY_I_VERSION_STRING "2.2.0.b4"
+#define SLONY_I_VERSION_STRING_DEC 2,2,0,b4
+#define SLONY_I_FUNC_VERSION_STRING 2_2_0_b4
 
 #ifndef PG_VERSION_MAJOR
 #define PG_VERSION_MAJOR 0
index 939a7834ff58214b75e2786e393a3c602d8c2b38..ee4fe3cb4e3741e13fc19ca5cd97cf90483d18c8 100644 (file)
@@ -4,9 +4,9 @@
 
 #include <server/pg_config.h>
 
-#define SLONY_I_VERSION_STRING "2.2.0.b3"
-#define SLONY_I_VERSION_STRING_DEC 2,2,0,b3
-#define SLONY_I_FUNC_VERSION_STRING 2_2_0_b3
+#define SLONY_I_VERSION_STRING "2.2.0.b4"
+#define SLONY_I_VERSION_STRING_DEC 2,2,0,b4
+#define SLONY_I_FUNC_VERSION_STRING 2_2_0_b4
 
 #if PG_VERSION_NUM >= 90200
 #define HAVE_GETACTIVESNAPSHOT 1
index f2b432375a5c3494d9339804758497c7acab7909..ddf390fd2ce63b277a4bbfb8eebaecb049cc9147 100644 (file)
@@ -11,7 +11,7 @@
 # ----------
 m4_define([SLONREL_VERSION], esyscmd([echo "$Name:  $" | \
   sed -e 's/\:\ REL_//' -e 's/\$//g' -e 's/_/./g' -e 's/\./\_/3' \
-    -e 's/\ //g' -e s/\:/`echo 2.2.0.b3`/ | tr -d '\n']))
+    -e 's/\ //g' -e s/\:/`echo 2.2.0.b4`/ | tr -d '\n']))
 
 m4_pattern_allow([^SLON_AC_])
 
index 8ce651fd149f75e0b8e97c3f5771a052002fc2e3..a89f1ab91033bde0e3149380c4c9bbe03d483c77 100644 (file)
@@ -493,7 +493,7 @@ as $$
 begin
        return @NAMESPACE@.slonyVersionMajor()::text || '.' || 
               @NAMESPACE@.slonyVersionMinor()::text || '.' || 
-              @NAMESPACE@.slonyVersionPatchlevel()::text || '.b3'  ;
+              @NAMESPACE@.slonyVersionPatchlevel()::text || '.b4'  ;
 end;
 $$ language plpgsql;
 comment on function @NAMESPACE@.slonyVersion() is