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 976202731bd..f51cc9d0027 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+mongodb (1.7.1) unstable; urgency=low
+
+ * sharding lots of changes
+ * replica_sets lots of changes
+ * see http://jira.mongodb.org/browse/SERVER/fixforversion/10193
+
+ -- Richard Kreuter <richard@10gen.com> Tue, 28 Sep 2010 16:56:28 -0500
+
mongodb (1.7.0) unstable; urgency=low
* sharding lots of changes
diff --git a/doxygenConfig b/doxygenConfig
index f5926cc7fb9..d1ae8fb584f 100644
--- a/doxygenConfig
+++ b/doxygenConfig
@@ -3,7 +3,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = MongoDB
-PROJECT_NUMBER = 1.7.1-pre-
+PROJECT_NUMBER = 1.7.1
OUTPUT_DIRECTORY = docs/doxygen
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
diff --git a/rpm/mongo.spec b/rpm/mongo.spec
index a9eb04f2670..a75978bd392 100644
--- a/rpm/mongo.spec
+++ b/rpm/mongo.spec
@@ -1,5 +1,5 @@
Name: mongo
-Version: 1.7.0
+Version: 1.7.1
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 6a4c37a067b..4afd15bf395 100644
--- a/util/version.cpp
+++ b/util/version.cpp
@@ -14,7 +14,7 @@ namespace mongo {
// mongo processes version support
//
- const char versionString[] = "1.7.1-pre-";
+ const char versionString[] = "1.7.1";
string mongodVersion() {
stringstream ss;