Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
craigk5n committed Sep 12, 2023
1 parent bb32cda commit 4e63921
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion UPGRADING.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>WebCalendar Upgrading Notes</h1>
<table>
<tr>
<th>WebCalendar Version:</th>
<td>1.9.8</td>
<td>1.9.9</td>
</tr>
</table>

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "k5n/webcalendar",
"type": "project",
"description": "Multi-user web-based calendar app",
"version": "1.9.8",
"version": "1.9.9",
"homepage": "https://www.k5n.us/webcalendar/",
"authors": [
{
Expand Down
4 changes: 2 additions & 2 deletions includes/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ function do_config()
];

// When changing PROGRAM VERSION, also change it in install/default_config.php
$PROGRAM_VERSION = 'v1.9.8';
$PROGRAM_VERSION = 'v1.9.9';
// Update PROGRAM_DATE with official release data
$PROGRAM_DATE = '11 Sep 2023';
$PROGRAM_DATE = '12 Sep 2023';

$PROGRAM_NAME = 'WebCalendar ' . "$PROGRAM_VERSION ($PROGRAM_DATE)";
$PROGRAM_URL = 'http://k5n.us/wp/webcalendar/';
Expand Down
2 changes: 1 addition & 1 deletion install/default_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
'USER_RSS_ENABLED' => 'N',
'USER_SEES_ONLY_HIS_GROUPS' => 'Y',
'USER_SORT_ORDER' => 'cal_lastname, cal_firstname',
'WEBCAL_PROGRAM_VERSION' => 'v1.9.8',
'WEBCAL_PROGRAM_VERSION' => 'v1.9.9',
'WEEK_START' => '0',
'WEEKEND_START' => '6',
'WEEKENDBG' => '#d0d0d0',
Expand Down
2 changes: 1 addition & 1 deletion install/sql/upgrade-db2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -301,4 +301,4 @@ ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
update webcal_entry_categories SET cat_owner = '' WHERE cat_owner IS NULL;
ALTER TABLE webcal_entry_categories ADD PRIMARY KEY (cal_id, cat_id, cat_order, cat_owner);
/*upgrade_v1.9.7*/
/*upgrade_v1.9.8*/
/*upgrade_v1.9.9*/
2 changes: 1 addition & 1 deletion install/sql/upgrade-ibase.sql
Original file line number Diff line number Diff line change
Expand Up @@ -316,4 +316,4 @@ ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
update webcal_entry_categories SET cat_owner = '' WHERE cat_owner IS NULL;
ALTER TABLE webcal_entry_categories ADD PRIMARY KEY (cal_id, cat_id, cat_order, cat_owner);
/*upgrade_v1.9.7*/
/*upgrade_v1.9.8*/
/*upgrade_v1.9.9*/
2 changes: 1 addition & 1 deletion install/sql/upgrade-mssql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -302,4 +302,4 @@ ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
update webcal_entry_categories SET cat_owner = '' WHERE cat_owner IS NULL;
ALTER TABLE webcal_entry_categories ADD PRIMARY KEY (cal_id, cat_id, cat_order, cat_owner);
/*upgrade_v1.9.7*/
/*upgrade_v1.9.8*/
/*upgrade_v1.9.9*/
2 changes: 1 addition & 1 deletion install/sql/upgrade-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -271,4 +271,4 @@ ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
update webcal_entry_categories SET cat_owner = '' WHERE cat_owner IS NULL;
ALTER TABLE webcal_entry_categories ADD PRIMARY KEY (cal_id, cat_id, cat_order, cat_owner);
/*upgrade_v1.9.6*/
/*upgrade_v1.9.8*/
/*upgrade_v1.9.9*/
2 changes: 1 addition & 1 deletion install/sql/upgrade-oracle.sql
Original file line number Diff line number Diff line change
Expand Up @@ -299,4 +299,4 @@ ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
update webcal_entry_categories SET cat_owner = '' WHERE cat_owner IS NULL;
ALTER TABLE webcal_entry_categories ADD PRIMARY KEY (cal_id, cat_id, cat_order, cat_owner);
/*upgrade_v1.9.7*/
/*upgrade_v1.9.8*/
/*upgrade_v1.9.9*/
2 changes: 1 addition & 1 deletion install/sql/upgrade-postgres.sql
Original file line number Diff line number Diff line change
Expand Up @@ -317,4 +317,4 @@ ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
update webcal_entry_categories SET cat_owner = '' WHERE cat_owner IS NULL;
ALTER TABLE webcal_entry_categories ADD PRIMARY KEY (cal_id, cat_id, cat_order, cat_owner);
/*upgrade_v1.9.7*/
/*upgrade_v1.9.8*/
/*upgrade_v1.9.9*/
2 changes: 1 addition & 1 deletion install/sql/upgrade.sql
Original file line number Diff line number Diff line change
Expand Up @@ -617,4 +617,4 @@ ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
update webcal_entry_categories SET cat_owner = '' WHERE cat_owner IS NULL;
ALTER TABLE webcal_entry_categories ADD PRIMARY KEY (cal_id, cat_id, cat_order, cat_owner);
/*upgrade_v1.9.7*/
/*upgrade_v1.9.8*/
/*upgrade_v1.9.9*/
2 changes: 1 addition & 1 deletion install/sql/upgrade_matrix.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
//Program Version for this release
$PROGRAM_VERSION = 'v1.9.8';
$PROGRAM_VERSION = 'v1.9.9';

//array element[0] = sql insertion testy
//array element[1] = sql delete to clean up
Expand Down

0 comments on commit 4e63921

Please sign in to comment.