Skip to content

Commit

Permalink
2.7.4 Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
kamaulynder committed Jul 31, 2014
1 parent 312722c commit 5272d09
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
Ushahidi 2.7.4b (Bug fix release) - 31/07/2014
-------------------------------------

### Major Fixes

* Upgraded Openlayers to version 2.13.1 (https://github.com/ushahidi/Ushahidi_Web/pull/1391)
* Stop checking what characters are in passowrd (https://github.com/ushahidi/Ushahidi_Web/pull/1373)
* Added option for admins to change the maximum file size for attaching photos to reports (https://github.com/ushahidi/Ushahidi_Web/pull/1369)
* Delete cache after changing theme so changes reflect immediately (https://github.com/ushahidi/Ushahidi_Web/pull/1368)

Ushahidi 2.7.3 (Bug fix release) - 23/04/2014
-------------------------------------

Expand Down
5 changes: 5 additions & 0 deletions sql/upgrade118-119.sql
@@ -0,0 +1,5 @@
-- UPDATE db_version
UPDATE `settings` SET `value` = 119 WHERE `key` = 'db_version';

-- UPDATE ushahidi_version
UPDATE `settings` SET `value` = '2.7.4b' WHERE `key` = 'ushahidi_version';
4 changes: 2 additions & 2 deletions sql/ushahidi.sql
Expand Up @@ -1480,5 +1480,5 @@ CREATE TABLE IF NOT EXISTS `verified` (
* Version information for table `settings`
*
*/
UPDATE `settings` SET `value` = '117' WHERE `key` = 'db_version';
UPDATE `settings` SET `value` = '2.7.3' WHERE `key`= 'ushahidi_version';
UPDATE `settings` SET `value` = '119' WHERE `key` = 'db_version';
UPDATE `settings` SET `value` = '2.7.4b' WHERE `key`= 'ushahidi_version';

0 comments on commit 5272d09

Please sign in to comment.