summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-09-03 11:13:35 -0400
committerEliot Horowitz <eliot@10gen.com>2010-09-03 11:13:35 -0400
commit25eb3f0c37cfc4e736bc47b25c47d4b22c6a7175 (patch)
tree1fe9737f5a341d0ef7516333d077cba0de9814da
parent8b24b1e719fbfe4c7ace9e42f6535fa7fd948462 (diff)
downloadmongo-25eb3f0c37cfc4e736bc47b25c47d4b22c6a7175.tar.gz
BUMP 1.7.0
-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 8919ca923b5..976202731bd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,16 @@
+mongodb (1.7.0) unstable; urgency=low
+
+ * sharding lots of changes
+ * replica_sets lots of changes
+
+ -- Richard Kreuter <richard@10gen.com> Fri, 03 Sep 2010 16:56:28 -0500
+
mongodb (1.5.8) unstable; urgency=low
* sharding lots of changes
* replica_sets lots of changes
+ -- Richard Kreuter <richard@10gen.com> Tue, 03 Aug 2010 16:56:28 -0500
mongodb (1.5.7) unstable; urgency=low
diff --git a/doxygenConfig b/doxygenConfig
index 643e1f9b1c3..ae942ce599a 100644
--- a/doxygenConfig
+++ b/doxygenConfig
@@ -3,7 +3,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = MongoDB
-PROJECT_NUMBER = 1.7.0-pre-
+PROJECT_NUMBER = 1.7.0
OUTPUT_DIRECTORY = docs/doxygen
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
diff --git a/rpm/mongo.spec b/rpm/mongo.spec
index e8386066cd2..a9eb04f2670 100644
--- a/rpm/mongo.spec
+++ b/rpm/mongo.spec
@@ -1,5 +1,5 @@
Name: mongo
-Version: 1.6.0
+Version: 1.7.0
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 3aa42e60d86..01b6343eea0 100644
--- a/util/version.cpp
+++ b/util/version.cpp
@@ -14,7 +14,7 @@ namespace mongo {
// mongo processes version support
//
- const char versionString[] = "1.7.0-pre-";
+ const char versionString[] = "1.7.0";
string mongodVersion() {
stringstream ss;