summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Singer2011-05-27 12:30:25 +0000
committerSteve Singer2011-05-27 14:23:12 +0000
commit1f79a1ff279b0c60bb50743669644396ea0edc55 (patch)
tree0e9965b39f8ca062f88f8aeffa31c9cffa29dcd5
parent0e933e470ea077b6f5b6f24b4230dac46d5e469d (diff)
Changing version for beta2
-rw-r--r--config.h.in4
-rw-r--r--config_msvc.h4
-rw-r--r--configure.ac2
-rw-r--r--src/backend/slony1_funcs.sql2
4 files changed, 6 insertions, 6 deletions
diff --git a/config.h.in b/config.h.in
index a5658a57..2a06e7c2 100644
--- a/config.h.in
+++ b/config.h.in
@@ -12,8 +12,8 @@
#ifndef SLONY_I_CONFIG_H
#define SLONY_I_CONFIG_H
-#define SLONY_I_VERSION_STRING "2.1.0.b1"
-#define SLONY_I_VERSION_STRING_DEC 2,1,0,b1
+#define SLONY_I_VERSION_STRING "2.1.0.b2"
+#define SLONY_I_VERSION_STRING_DEC 2,1,0,b2
#ifndef PG_VERSION_MAJOR
#define PG_VERSION_MAJOR 0
diff --git a/config_msvc.h b/config_msvc.h
index 10f39181..083e0994 100644
--- a/config_msvc.h
+++ b/config_msvc.h
@@ -4,8 +4,8 @@
#include <server/pg_config.h>
-#define SLONY_I_VERSION_STRING "2.1.0.b1"
-#define SLONY_I_VERSION_STRING_DEC 2,1,0,b1
+#define SLONY_I_VERSION_STRING "2.1.0.b2"
+#define SLONY_I_VERSION_STRING_DEC 2,1,0,b2
#if PG_VERSION_NUM >= 90000
#define HAVE_GETACTIVESNAPSHOT 1
#define HAVE_TYPCACHE 1
diff --git a/configure.ac b/configure.ac
index 754951e6..d21eee7d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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.1.0.b1`/ | tr -d '\n']))
+ -e 's/\ //g' -e s/\:/`echo 2.1.0.b2`/ | tr -d '\n']))
m4_pattern_allow([^SLON_AC_])
diff --git a/src/backend/slony1_funcs.sql b/src/backend/slony1_funcs.sql
index b6cb32ce..70c97220 100644
--- a/src/backend/slony1_funcs.sql
+++ b/src/backend/slony1_funcs.sql
@@ -451,7 +451,7 @@ as $$
begin
return @NAMESPACE@.slonyVersionMajor()::text || '.' ||
@NAMESPACE@.slonyVersionMinor()::text || '.' ||
- @NAMESPACE@.slonyVersionPatchlevel()::text || '.b1' ;
+ @NAMESPACE@.slonyVersionPatchlevel()::text || '.b2' ;
end;
$$ language plpgsql;
comment on function @NAMESPACE@.slonyVersion() is