Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
✨ 1.1.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
simonschaufi committed Aug 22, 2016
1 parent d08d534 commit 27f6050
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

#### Reproducable on demo.kimai.org? [yes|no]

#### Kimai version [for example: dev 1.0.1.1388|github master|github develop]
#### Kimai version [for example: dev 1.1.0.1389|github master|github develop]

#### Relevant log entries from Debug tab
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<project name="Kimai" default="help">

<!-- values depending on the Kimai version and your development environment -->
<property name="release.version" value="1.0.1"/>
<property name="release.version" value="1.1.0"/>
<property name="release.directory" location="/tmp/kimai/"/>

<!-- default target just dumps a copyright notice -->
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"keywords": ["timetracking", "projectmanagement", "invoicing"],
"homepage": "https://github.com/kimai/kimai",
"license": "GPL-3.0",
"version": "1.0.1",
"version": "1.1.0",
"authors": [
{ "name": "Severin Leonhardt", "homepage": "https://github.com/ServiusHack" },
{ "name": "Kevin Papst", "homepage": "https://github.com/kevinpapst" }
Expand Down
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
$kga['version'] = '1.0.1';
$kga['version'] = '1.1.0';
$kga['revision'] = 1389; // database revision number (incremented whenever the database changes)
$kga['status'] = 'dev'; // leave blank if stable
6 changes: 3 additions & 3 deletions kimai.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"time": "2016-07-03",
"version": "1.0.0",
"revision": "1387",
"time": "2016-08-23",
"version": "1.1.0",
"revision": "1389",
"status": "stable",
"news": "http://www.kimai.org/blog/2013/test-kimai-v0-9-3-beta-1/"
}
5 changes: 3 additions & 2 deletions updater/updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -1122,11 +1122,12 @@
exec_query("ALTER TABLE ${p}customers ADD COLUMN `country` varchar(2) NULL DEFAULT NULL AFTER `city`");
}

// release of kimai 1.1.0

// ================================================================================
// FINALIZATION: update DB version number
// ================================================================================
if ((int)$revisionDB < $kga['revision'] && !$errors)
{
if ((int)$revisionDB < $kga['revision'] && !$errors) {
$query = sprintf("UPDATE `${p}configuration` SET value = '%s' WHERE `option` = 'version';", $kga['version']);
exec_query($query, 0);

Expand Down

0 comments on commit 27f6050

Please sign in to comment.