diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | doxygenConfig | 2 | ||||
-rw-r--r-- | rpm/mongo.spec | 2 | ||||
-rw-r--r-- | util/version.cpp | 2 |
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; |