diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cc5976ad5..8d01955642 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,38 @@ +Ushahidi 2.7.1 (Bug fix release) - 22/08/2013 +------------------------------------- + +### Major Fixes + +* Ushahidi should not upsize uploaded images, only downsize them[#1132](https://github.com/ushahidi/Ushahidi_Web/issues/1132) +* Tagline running under report button[#1040](https://github.com/ushahidi/Ushahidi_Web/issues/1040) +* Long, Lat order on mouse hover[#1092](https://github.com/ushahidi/Ushahidi_Web/issues/1092) +* Bulk deletions coupled with single report deletion[#1093](https://github.com/ushahidi/Ushahidi_Web/issues/1093) +* Unexpected Function error[#1123](https://github.com/ushahidi/Ushahidi_Web/issues/1123) +* ‘Undefined’ on hover[#1067](https://github.com/ushahidi/Ushahidi_Web/issues/1067) +* Wrong Content Type for RSS Feeds[#991](https://github.com/ushahidi/Ushahidi_Web/issues/991) +* Twitter Credential Error[#1109](https://github.com/ushahidi/Ushahidi_Web/issues/1109) +* Validation error on custom fields dropdown[#1113](https://github.com/ushahidi/Ushahidi_Web/issues/1113) +* CSV Uploader[#1181](https://github.com/ushahidi/Ushahidi_Web/issues/1181) +* Error with reports view page[#1176,1166,1178](https://github.com/ushahidi/Ushahidi_Web/issues/1176,https://github.com/ushahidi/Ushahidi_Web/issues/1166,https://github.com/ushahidi/Ushahidi_Web/issues/1178) +* Login page issues[#1161](https://github.com/ushahidi/Ushahidi_Web/pull/1161) +* Issues on Crowdmap[#1158](https://github.com/ushahidi/Ushahidi_Web/issues/1158) +* Database table prefix installation[#1154](https://github.com/ushahidi/Ushahidi_Web/issues/1154) +* Upload images .jpeg fails[#1136](https://github.com/ushahidi/Ushahidi_Web/issues/1136) +* Database Error[#1149](https://github.com/ushahidi/Ushahidi_Web/issues/1149) +* Category impact charts not loading[#1147](https://github.com/ushahidi/Ushahidi_Web/issues/1147) +* Fatal error in stats page[#1134](https://github.com/ushahidi/Ushahidi_Web/pull/1134) +* Twitter scheduler bugs[#1133](https://github.com/ushahidi/Ushahidi_Web/pull/1133) +* CSV downloaded form platform throws errors on attempt to upload[#1140](https://github.com/ushahidi/Ushahidi_Web/issues/1140) +* Default report time on reports always wrong[#1130](https://github.com/ushahidi/Ushahidi_Web/pull/1130) +* Date picker issues in default theme[#1126](https://github.com/ushahidi/Ushahidi_Web/pull/1126) +* Make nav helper more friendly and filterable for plugins and themes[#1125](https://github.com/ushahidi/Ushahidi_Web/pull/1125) +* Cannot enable clean URLs from admin[#1124](https://github.com/ushahidi/Ushahidi_Web/pull/1124) +* Unable to create new users, database error[#1122](https://github.com/ushahidi/Ushahidi_Web/pull/1122) +* Incident location not on incident pages[#1121](https://github.com/ushahidi/Ushahidi_Web/issues/1122) +* Table name escaping creates SQL error when there’s a table prefix[#1118](https://github.com/ushahidi/Ushahidi_Web/pull/1118) +* Error adding report to a photo (Crowdmap Classic)[#1099](https://github.com/ushahidi/Ushahidi_Web/pull/1099) + + Ushahidi 2.7 (Bamako) - 02/05/2013 ------------------------------------- diff --git a/application/config/version.php b/application/config/version.php index 29d39577e9..20e13c2c94 100755 --- a/application/config/version.php +++ b/application/config/version.php @@ -3,7 +3,7 @@ * The Ushahidi Engine version * Make sure to update the ushahidi_version in the settings table too! */ -$config['ushahidi_version'] = "2.7.1"; +$config['ushahidi_version'] = "2.7.1b"; /** * The Ushahidi Engine DB revision number diff --git a/sql/upgrade107-108.sql b/sql/upgrade107-108.sql index bc25a29462..68c4b8b8ce 100644 --- a/sql/upgrade107-108.sql +++ b/sql/upgrade107-108.sql @@ -2,4 +2,4 @@ UPDATE `settings` SET `value` = 108 WHERE `key` = 'db_version'; -- UPDATE ushahidi_version -UPDATE `settings` SET `value` = '2.7.1' WHERE `key` = 'ushahidi_version'; +UPDATE `settings` SET `value` = '2.7.1b' WHERE `key` = 'ushahidi_version'; diff --git a/sql/ushahidi.sql b/sql/ushahidi.sql index c4aa6e6a7b..99133a73f5 100755 --- a/sql/ushahidi.sql +++ b/sql/ushahidi.sql @@ -1499,4 +1499,4 @@ CREATE TABLE IF NOT EXISTS `verified` ( * */ UPDATE `settings` SET `value` = '108' WHERE `key` = 'db_version'; -UPDATE `settings` SET `value` = '2.7.1' WHERE `key`= 'ushahidi_version'; +UPDATE `settings` SET `value` = '2.7.1b' WHERE `key`= 'ushahidi_version';