Skip to content

Commit 668d4c7

Browse files
committed
Version 2.0-beta.4
1 parent df7b15b commit 668d4c7

6 files changed

Lines changed: 20 additions & 8 deletions

File tree

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2.0-beta.4 - 25 Feb 2013
2+
========================
3+
4+
Fixed bug which rendered insights stream blank when user was logged out

docs/source/changelog/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Check out what's new, fixed, and updated in each version release of ThinkUp.
66
.. toctree::
77
:maxdepth: 1
88

9+
2.0-beta.4
910
2.0-beta.3
1011
2.0-beta.2
1112
2.0-beta.1

tests/migration-assertions.php

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* Database migration assertions to test during WebTestOfUpgradeDatabase
3131
*/
32-
$LATEST_VERSION = '2.0-beta.3';
32+
$LATEST_VERSION = '2.0-beta.4';
3333
$TOTAL_MIGRATION_COUNT = 248;
3434

3535
$MIGRATIONS = array(
@@ -971,7 +971,7 @@
971971

972972
/* 2.0-beta.3 */
973973
'2.0-beta.3' => array(
974-
'zip_url' => 'file://./build/thinkup.zip',
974+
'zip_url' => 'https://thinkup.com/downloads/beta/thinkup-2.0-beta.3.zip',
975975
'migrations' => 3,
976976
'setup_sql' => array("INSERT INTO tu_options (option_id, option_name, option_value) " .
977977
"VALUES (2345, 'favs_older_pages', 'test_plugin_value');".
@@ -997,4 +997,11 @@
997997
)
998998
)
999999
),
1000+
1001+
/* 2.0-beta.4 */
1002+
'2.0-beta.4' => array(
1003+
'zip_url' => 'file://./build/thinkup.zip',
1004+
'migrations' => 0,
1005+
),
1006+
10001007
);

webapp/install/sql/build-db_mysql.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--
22
-- ThinkUp Database Creation Script
3-
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2013-02-22
3+
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2013-02-25
44
--
55

66
ALTER DATABASE DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
@@ -516,13 +516,13 @@ CREATE TABLE tu_users (
516516
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Service user details.';
517517

518518

519-
-- Dump completed on 2013-02-22 23:21:22
519+
-- Dump completed on 2013-02-25 11:28:05
520520

521521
--
522522
-- Insert DB Version
523523
--
524524
INSERT INTO tu_options (namespace, option_name, option_value, last_updated, created)
525-
VALUES ('application_options', 'database_version', '2.0-beta.3', NOW(), NOW());
525+
VALUES ('application_options', 'database_version', '2.0-beta.4', NOW(), NOW());
526526

527527
--
528528
-- Insert default plugin(s)

webapp/install/sql/mysql_migrations/2013-02-17_twitter_api_upgrade_remove_unused_fields_v2.0-beta.3.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Instead of altering the table, create a new one, transfer rows, and drop old one
2-
--ALTER TABLE tu_instances_twitter DROP last_unfav_page_checked;
3-
--ALTER TABLE tu_instances_twitter DROP last_page_fetched_favorites;
2+
-- ALTER TABLE tu_instances_twitter DROP last_unfav_page_checked;
3+
-- ALTER TABLE tu_instances_twitter DROP last_page_fetched_favorites;
44

55
CREATE TABLE tu_instances_twitter_20b3 (
66
id int(11) NOT NULL AUTO_INCREMENT COMMENT 'Internal unique ID.',

webapp/install/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
* @license http://www.gnu.org/licenses/gpl.html
2727
* @copyright 2009-2013 Dwi Widiastuti, Gina Trapani, Guillaume Boudreau
2828
*/
29-
$THINKUP_VERSION = '2.0-beta.3';
29+
$THINKUP_VERSION = '2.0-beta.4';
3030
$THINKUP_VERSION_REQUIRED['php'] = '5.2';
3131
$THINKUP_VERSION_REQUIRED['mysql'] = '5';

0 commit comments

Comments
 (0)