diff --git a/CHANGELOG.md b/CHANGELOG.md index 21cebf98e8..89d9a8ebd6 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +Ushahidi 2.7.3b (Bug fix release) - 14/04/2014 +------------------------------------- + +### Major Fixes + +* Timeline upgrade (https://github.com/ushahidi/Ushahidi_Web/pull/1341) +* Fixed issue with dual alert sign up (https://github.com/ushahidi/Ushahidi_Web/pull/1339) +* Updated sms helper and scheduler to add url in sms (https://github.com/ushahidi/Ushahidi_Web/pull/1339) +* Check category translation on csv import to avoid category duplication (https://github.com/ushahidi/Ushahidi_Web/pull/1345) +* Fixed issue with the reverse geocoder (https://github.com/ushahidi/Ushahidi_Web/pull/1336) +* Fixed broken video embeds in reports when viewed over HTTPS (https://github.com/ushahidi/Ushahidi_Web/pull/1328) +* Added South Sudan and Kosovo to the country list (https://github.com/ushahidi/Ushahidi_Web/pull/1324) +* Fixed issue with feed category +* Replaced feedback email after submit report with site email + Ushahidi 2.7.2 (Bug fix release) - 28/01/2014 ------------------------------------- diff --git a/application/config/version.php b/application/config/version.php index ed2079cf5d..42f1f4bc0d 100755 --- a/application/config/version.php +++ b/application/config/version.php @@ -3,10 +3,10 @@ * The Ushahidi Engine version * Make sure to update the ushahidi_version in the settings table too! */ -$config['ushahidi_version'] = "2.7.2"; +$config['ushahidi_version'] = "2.7.3b"; /** * The Ushahidi Engine DB revision number * Increments when changes are made to the Ushahidi DB schema. */ -$config['ushahidi_db_version'] = "116"; +$config['ushahidi_db_version'] = "117"; diff --git a/sql/upgrade116-117.sql b/sql/upgrade116-117.sql new file mode 100644 index 0000000000..61b3a794a0 --- /dev/null +++ b/sql/upgrade116-117.sql @@ -0,0 +1,5 @@ +-- UPDATE db_version +UPDATE `settings` SET `value` = 117 WHERE `key` = 'db_version'; + +-- UPDATE ushahidi_version +UPDATE `settings` SET `value` = '2.7.3b' WHERE `key` = 'ushahidi_version'; diff --git a/sql/ushahidi.sql b/sql/ushahidi.sql index 94567a1ffe..4b05a4abd1 100755 --- a/sql/ushahidi.sql +++ b/sql/ushahidi.sql @@ -1460,5 +1460,5 @@ CREATE TABLE IF NOT EXISTS `verified` ( * Version information for table `settings` * */ -UPDATE `settings` SET `value` = '116' WHERE `key` = 'db_version'; -UPDATE `settings` SET `value` = '2.7.2' WHERE `key`= 'ushahidi_version'; +UPDATE `settings` SET `value` = '117' WHERE `key` = 'db_version'; +UPDATE `settings` SET `value` = '2.7.3b' WHERE `key`= 'ushahidi_version';