Skip to content

Commit 5272d09

Browse files
committed
2.7.4 Beta
1 parent 312722c commit 5272d09

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Ushahidi 2.7.4b (Bug fix release) - 31/07/2014
2+
-------------------------------------
3+
4+
### Major Fixes
5+
6+
* Upgraded Openlayers to version 2.13.1 (https://github.com/ushahidi/Ushahidi_Web/pull/1391)
7+
* Stop checking what characters are in passowrd (https://github.com/ushahidi/Ushahidi_Web/pull/1373)
8+
* Added option for admins to change the maximum file size for attaching photos to reports (https://github.com/ushahidi/Ushahidi_Web/pull/1369)
9+
* Delete cache after changing theme so changes reflect immediately (https://github.com/ushahidi/Ushahidi_Web/pull/1368)
10+
111
Ushahidi 2.7.3 (Bug fix release) - 23/04/2014
212
-------------------------------------
313

sql/upgrade118-119.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- UPDATE db_version
2+
UPDATE `settings` SET `value` = 119 WHERE `key` = 'db_version';
3+
4+
-- UPDATE ushahidi_version
5+
UPDATE `settings` SET `value` = '2.7.4b' WHERE `key` = 'ushahidi_version';

sql/ushahidi.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1480,5 +1480,5 @@ CREATE TABLE IF NOT EXISTS `verified` (
14801480
* Version information for table `settings`
14811481
*
14821482
*/
1483-
UPDATE `settings` SET `value` = '117' WHERE `key` = 'db_version';
1484-
UPDATE `settings` SET `value` = '2.7.3' WHERE `key`= 'ushahidi_version';
1483+
UPDATE `settings` SET `value` = '119' WHERE `key` = 'db_version';
1484+
UPDATE `settings` SET `value` = '2.7.4b' WHERE `key`= 'ushahidi_version';

0 commit comments

Comments
 (0)