Release 1.1.2

This commit is contained in:
Andrew McMillan 2013-07-15 13:12:05 +12:00
parent 48d22782f7
commit cc8e6a0131
3 changed files with 4 additions and 4 deletions

2
debian/changelog vendored
View File

@ -2,7 +2,7 @@ davical (1.1.2-1) unstable; urgency=low
* New upstream release (closes:#702403)
-- Andrew McMillan <awm@debian.org> Wed, 06 Mar 2013 20:27:17 +1300
-- Andrew McMillan <awm@debian.org> Wed, 01 May 2013 10:05:33 +1200
davical (1.1.1-1) unstable; urgency=high

2
debian/control vendored
View File

@ -10,7 +10,7 @@ Homepage: http://davical.org/
Package: davical
Architecture: all
Depends: ${misc:Depends}, debconf (>= 1.0.32), php5-pgsql, postgresql-client (>= 8.1), libawl-php (>= 0.53-1~), libawl-php (<< 0.55), libdbd-pg-perl, libyaml-perl
Depends: ${misc:Depends}, debconf (>= 1.0.32), php5-pgsql, postgresql-client (>= 8.1), libawl-php (>= 0.54-1~), libawl-php (<< 0.55), libdbd-pg-perl, libyaml-perl
Recommends: postgresql (>= 8.3)
Description: The DAViCal CalDAV & CardDAV Server
The DAViCal CalDAV Server is designed to store CalDAV calendars and

View File

@ -200,8 +200,8 @@ if ( function_exists('awl_set_locale') ) {
*
*/
$c->code_version = 0;
$c->want_awl_version = '0.53';
$c->version_string = '1.1.1'; // The actual version # is replaced into that during the build /release process
$c->want_awl_version = '0.54';
$c->version_string = '1.1.2'; // The actual version # is replaced into that during the build /release process
if ( isset($c->version_string) && preg_match( '/(\d+)\.(\d+)\.(\d+)(.*)/', $c->version_string, $matches) ) {
$c->code_major = $matches[1];
$c->code_minor = $matches[2];