summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog8
-rw-r--r--doxygenConfig2
-rw-r--r--rpm/mongo.spec2
-rw-r--r--util/version.cpp2
4 files changed, 11 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index d702fbada2b..6883e69e852 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+mongodb (1.5.7) unstable; urgency=low
+
+ * sharding lots of changes
+ * replica_sets lots of changes
+
+ -- Richard Kreuter <richard@10gen.com> Fri, 30 Jul 2010 16:56:28 -0500
+
+
mongodb (1.5.6) unstable; urgency=low
* sharding lots of changes, see http://jira.mongodb.org/browse/SERVER/fixforversion/10179
diff --git a/doxygenConfig b/doxygenConfig
index 82faa770b63..04fa009a99c 100644
--- a/doxygenConfig
+++ b/doxygenConfig
@@ -3,7 +3,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = MongoDB
-PROJECT_NUMBER = 1.5.6
+PROJECT_NUMBER = 1.5.7
OUTPUT_DIRECTORY = docs/doxygen
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
diff --git a/rpm/mongo.spec b/rpm/mongo.spec
index 4376e9e5a20..a2884715db9 100644
--- a/rpm/mongo.spec
+++ b/rpm/mongo.spec
@@ -1,5 +1,5 @@
Name: mongo
-Version: 1.5.6
+Version: 1.5.7
Release: mongodb_1%{?dist}
Summary: mongo client shell and tools
License: AGPL 3.0
diff --git a/util/version.cpp b/util/version.cpp
index cd417c968dc..ede3811e0a6 100644
--- a/util/version.cpp
+++ b/util/version.cpp
@@ -14,7 +14,7 @@ namespace mongo {
// mongo processes version support
//
- const char versionString[] = "1.5.7-pre-";
+ const char versionString[] = "1.5.7";
string mongodVersion() {
stringstream ss;