Skip to content

Commit

Permalink
2.7.3b
Browse files Browse the repository at this point in the history
  • Loading branch information
kamaulynder committed Apr 13, 2014
1 parent f3d87a2 commit 7129097
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
15 changes: 15 additions & 0 deletions 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
-------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions application/config/version.php
Expand Up @@ -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";
5 changes: 5 additions & 0 deletions 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';
4 changes: 2 additions & 2 deletions sql/ushahidi.sql
Expand Up @@ -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';

0 comments on commit 7129097

Please sign in to comment.