updating to release 2.2.0 B3
authorSteve Singer <ssinger@ca.afilias.info>
Thu, 31 Jan 2013 22:12:57 +0000 (17:12 -0500)
committerSteve Singer <ssinger@ca.afilias.info>
Thu, 31 Jan 2013 22:12:57 +0000 (17:12 -0500)
RELEASE
config.h.in
configure.ac
src/backend/slony1_funcs.sql

diff --git a/RELEASE b/RELEASE
index 8165d576401805d5594addcd5047599fe79dbd0f..088d3bdc8db62085fc55fbea232fe7badda085bb 100644 (file)
--- a/RELEASE
+++ b/RELEASE
@@ -1,6 +1,6 @@
 #+OPTIONS: ^:{}
 * Slony-I Release Notes
-
+*** 2.2.0  b3
 - Bug #258 :: Fix race condition with MOVE SET where a third node could get updated to the wrong SYNC number
 
 - No bug :: add --with-pgport option to configure and when set to yes let slonik use these functions to determine
@@ -29,7 +29,7 @@
              providers unless we don't find any provider at all
              otherwise.
 
-** 2.2.0
+** 2.2.0 b2
 - Bug #276 :: Fixed detection of duplicate value in sl_nodelock
 - Bug #275 :: fix memory leak in monitor thread
 - Bug #272 :: Fix memory overwrite in slonik parsing
index 15d5da15a5b06e874985bdf2b7b06b4cf688e2e3..67c723482f7fa3a491c47817ec248795526d8b63 100644 (file)
@@ -12,8 +12,8 @@
 #ifndef        SLONY_I_CONFIG_H
 #define SLONY_I_CONFIG_H
 
-#define SLONY_I_VERSION_STRING "2.2.0.b2"
-#define SLONY_I_VERSION_STRING_DEC 2,2,0,b2
+#define SLONY_I_VERSION_STRING "2.2.0.b3"
+#define SLONY_I_VERSION_STRING_DEC 2,2,0,b3
 
 #ifndef PG_VERSION_MAJOR
 #define PG_VERSION_MAJOR 0
index 6e5467df343e04ac3c41dc0c037e6280bc025b2c..7d21da2f4614b5bc629da77bc2570c85922291fe 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.b2`/ | tr -d '\n']))
+    -e 's/\ //g' -e s/\:/`echo 2.2.0.b3`/ | tr -d '\n']))
 
 m4_pattern_allow([^SLON_AC_])
 
index 15774cd9db002b1d614414573b645f63b56a5c26..91fbee46d69092bbc03e26fd7bbea738f2eda279 100644 (file)
@@ -493,7 +493,7 @@ as $$
 begin
        return @NAMESPACE@.slonyVersionMajor()::text || '.' || 
               @NAMESPACE@.slonyVersionMinor()::text || '.' || 
-              @NAMESPACE@.slonyVersionPatchlevel()::text || '.b2'  ;
+              @NAMESPACE@.slonyVersionPatchlevel()::text || '.b3'  ;
 end;
 $$ language plpgsql;
 comment on function @NAMESPACE@.slonyVersion() is