Commit daa10d26 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Bump version number.

parent 304d82cf
...@@ -2,5 +2,6 @@ Changelog highlights the differences between two versions. ...@@ -2,5 +2,6 @@ Changelog highlights the differences between two versions.
cnanges between version 2.0.1 - 2.0.2 cnanges between version 2.0.1 - 2.0.2
======================================= =======================================
- PHP fixes <?= becomes <?php
-- end -- end
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
// MODULE CONFIGURATION DEFINITION // MODULE CONFIGURATION DEFINITION
$config = array(); $config = array();
$config['mod_name'] = 'Timesheet'; // name the module $config['mod_name'] = 'Timesheet'; // name the module
$config['mod_version'] = '1.0.2'; // add a version number $config['mod_version'] = '2.0.2'; // add a version number
$config['mod_directory'] = 'timesheet'; // tell dotProject where to find this module $config['mod_directory'] = 'timesheet'; // tell dotProject where to find this module
$config['mod_setup_class'] = 'CSetupTimesheet'; // the name of the PHP setup class (used below) $config['mod_setup_class'] = 'CSetupTimesheet'; // the name of the PHP setup class (used below)
$config['mod_type'] = 'user'; // 'core' for modules distributed with dP by standard, 'user' for additional modules from dotmods $config['mod_type'] = 'user'; // 'core' for modules distributed with dP by standard, 'user' for additional modules from dotmods
...@@ -78,6 +78,9 @@ class CSetupTimesheet { ...@@ -78,6 +78,9 @@ class CSetupTimesheet {
case "1.0": case "1.0":
case "1.0.1": case "1.0.1":
case "1.0.2": case "1.0.2":
case "2.0.0":
case "2.0.1";
case "2.0.2":
return true; return true;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment