Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Version 1.0.6
  • Loading branch information
ginatrapani committed May 7, 2012
1 parent 469081e commit 752aad2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/source/changelog/1.0.6.rst
@@ -0,0 +1,7 @@
1.0.6 - 7 May 2012
==================

Changelog:


* Fixed bug that caused "Save Settings" button in plugin settings area to not save settings.
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.0.6
1.0.5
1.0.4
1.0.3
Expand Down
6 changes: 6 additions & 0 deletions tests/migration-assertions.php
Expand Up @@ -810,6 +810,12 @@

/* 1.0.5 */
'1.0.5' => array(
'zip_url' => 'https://github.com/downloads/ginatrapani/ThinkUp/thinkup_1.0.5.zip',
'migrations' => 0,
),

/* 1.0.6 */
'1.0.6' => array(
'zip_url' => 'file://./build/thinkup.zip',
'migrations' => 0,
),
Expand Down
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-05-05
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2012-05-07
--

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


-- Dump completed on 2012-05-05 14:52:22
-- Dump completed on 2012-05-07 13:34:53

--
-- Insert DB Version
--
INSERT INTO tu_options (namespace, option_name, option_value, last_updated, created)
VALUES ('application_options', 'database_version', '1.0.5', NOW(), NOW());
VALUES ('application_options', 'database_version', '1.0.6', 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.0.5';
$THINKUP_VERSION = '1.0.6';
$THINKUP_VERSION_REQUIRED['php'] = '5.2';
$THINKUP_VERSION_REQUIRED['mysql'] = '5';

0 comments on commit 752aad2

Please sign in to comment.