Skip to content

Commit

Permalink
Version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ginatrapani committed Sep 13, 2012
1 parent 59cdfc1 commit 1dd198e
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 9 deletions.
6 changes: 6 additions & 0 deletions docs/source/changelog/1.1.1.rst
@@ -0,0 +1,6 @@
1.1.1 - 12 Sept 2012
====================

* Fix "Incorrect table name" MySQL error during upgrades from version 1.0.8 on MySQL versions lower than 5.1.6.
* Fix "Illegal offset type" PHP warning during Twitter crawl.
* Activate Foursquare plugin by default on installation.
2 changes: 1 addition & 1 deletion docs/source/changelog/1.1.rst
Expand Up @@ -3,7 +3,7 @@

* New feature! The Foursquare plugin captures checkins, photos, and comments. The dashboard includes
a map of last week's checkins, the rate of checkins by hour over the last week compared to all time, pie charts
of the types of places you check into, and a list of checkins on this day in years past. You an also export your
of the types of places you check into, and a list of checkins on this day in years past. You can also export your
checkins to a CSV file.
* New Twitter, Facebook, Google+ "Time Machine" dashboard module: Posts published on this day in years past.
* Bugfix: Fixed installation URL in Facebook reauthorization email notification text.
Expand Down
1 change: 1 addition & 0 deletions docs/source/changelog/index.rst
Expand Up @@ -6,6 +6,7 @@ Check out what's new, fixed, and updated in each version release of ThinkUp.
.. toctree::
:maxdepth: 1

1.1.1
1.1
1.0.8.1
1.0.7
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1'
version = '1.1.1'
# The full version, including alpha/beta/rc tags.
release = '1.1'
release = '1.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
11 changes: 9 additions & 2 deletions tests/migration-assertions.php
Expand Up @@ -29,7 +29,7 @@
*
* Database migration assertions to test during WebTestOfUpgradeDatabase
*/
$LATEST_VERSION = '1.1';
$LATEST_VERSION = '1.1.1';
$TOTAL_MIGRATION_COUNT = 240;

$MIGRATIONS = array(
Expand Down Expand Up @@ -856,7 +856,7 @@

/* 1.1 */
'1.1' => array(
'zip_url' => 'file://./build/thinkup.zip',
'zip_url' => 'https://github.com/downloads/ginatrapani/ThinkUp/thinkup_1.1.zip',
'migrations' => 1,
'migration_assertions' => array(
'sql' => array(
Expand Down Expand Up @@ -917,4 +917,11 @@
)
)
),

/* 1.1.1 */
'1.1.1' => array(
'zip_url' => 'file://./build/thinkup.zip',
'migrations' => 0,
),

);
6 changes: 3 additions & 3 deletions webapp/install/sql/build-db_mysql.sql
@@ -1,6 +1,6 @@
--
-- ThinkUp Database Creation Script
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2012-09-11
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2012-09-12
--

ALTER DATABASE DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
Expand Down Expand Up @@ -517,13 +517,13 @@ CREATE TABLE tu_users (
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Service user details.';


-- Dump completed on 2012-09-11 17:33:14
-- Dump completed on 2012-09-12 22:26:43

--
-- Insert DB Version
--
INSERT INTO tu_options (namespace, option_name, option_value, last_updated, created)
VALUES ('application_options', 'database_version', '1.1', NOW(), NOW());
VALUES ('application_options', 'database_version', '1.1.1', NOW(), NOW());

--
-- Insert default plugin(s)
Expand Down
2 changes: 1 addition & 1 deletion webapp/install/version.php
Expand Up @@ -26,6 +26,6 @@
* @license http://www.gnu.org/licenses/gpl.html
* @copyright 2009-2012 Dwi Widiastuti, Gina Trapani, Guillaume Boudreau
*/
$THINKUP_VERSION = '1.1';
$THINKUP_VERSION = '1.1.1';
$THINKUP_VERSION_REQUIRED['php'] = '5.2';
$THINKUP_VERSION_REQUIRED['mysql'] = '5';

0 comments on commit 1dd198e

Please sign in to comment.