From d110c9467afa15ff5eb5f3f0696b4a35bc46f90e Mon Sep 17 00:00:00 2001 From: Marco Vermeulen Date: Wed, 5 Dec 2012 14:31:23 +0000 Subject: [PATCH] Rename mongo release script and fix typo. --- db/{0840_drop_versions_from_application.js => 0840_release.js} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename db/{0840_drop_versions_from_application.js => 0840_release.js} (93%) diff --git a/db/0840_drop_versions_from_application.js b/db/0840_release.js similarity index 93% rename from db/0840_drop_versions_from_application.js rename to db/0840_release.js index 13142869..19096c21 100644 --- a/db/0840_drop_versions_from_application.js +++ b/db/0840_release.js @@ -4,7 +4,7 @@ db.broadcast.remove() db.broadcast.insert({ "_id" : 1, "text" : "GVM version 0.8.4 release!" }) db.broadcast.insert({ "_id" : 2, "text" : "In this release:" }) db.broadcast.insert({ "_id" : 3, "text" : " * gvm current without candidate (thanks Matt Hurne!)" }) -db.broadcast.insert({ "_id" : 4, "text" : " * bug fixes)" }) +db.broadcast.insert({ "_id" : 4, "text" : " * bug fixes" }) db.broadcast.insert({ "_id" : 5, "text" : " * internal optimisations and improvements" }) db.broadcast.insert({ "_id" : 6, "text" : " * licensed under the Apache 2.0 License" }) db.broadcast.insert({ "_id" : 7, "text" : " * remove dependency on zip" })