Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cd81a20

Browse files
committedApr 28, 2012
Bump version to 2.3.1
1 parent 3294259 commit cd81a20

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
 

‎application/config/version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* The Ushahidi Engine version
44
* Make sure to update the ushahidi_version in the settings table too!
55
*/
6-
$config['ushahidi_version'] = "2.3";
6+
$config['ushahidi_version'] = "2.3.1";
77

88

99
/**

‎sql/upgrade86-87.sql

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
ALTER TABLE `sessions` CHANGE COLUMN `session_id` `session_id` VARCHAR(127) NOT NULL ;
22
UPDATE `settings` SET `db_version` = '87' WHERE `id`=1 LIMIT 1;
3+
UPDATE `settings` SET `ushahidi_version` = '2.3.1' WHERE `id`=1 LIMIT 1;
4+

‎sql/ushahidi.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1448,5 +1448,5 @@ CREATE TABLE IF NOT EXISTS `verified` (
14481448
* Version information for table `settings`
14491449
*
14501450
*/
1451-
UPDATE `settings` SET `ushahidi_version` = '2.3' WHERE `id`=1 LIMIT 1;
1451+
UPDATE `settings` SET `ushahidi_version` = '2.3.1' WHERE `id`=1 LIMIT 1;
14521452
UPDATE `settings` SET `db_version` = '87' WHERE `id` = 1 LIMIT 1;

0 commit comments

Comments
 (0)
Please sign in to comment.