diff --git a/VERSION b/VERSION index 2003b639..965065db 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.2 +0.9.3 diff --git a/debian/changelog b/debian/changelog index f55f08ed..6d302afc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +rscds (0.9.3) unstable; urgency=low + + * Start renaming to DAViCal internally and in documentation. + * Fix handling of CONFIDENTIAL events + * Fixes to support iCal 3.0.1 and later. + * Changes to support SOHO Organizer + * Change style of response to Freebusy queries + * Various refactoring. + * Use relative URLs where possible and refactor to use URL formatting + routine. + * Start to implement structured support for DAV Principals + * Fixes to timezone handling. + + -- Andrew McMillan Wed, 16 Jan 2008 21:55:31 +1300 + rscds (0.9.2) unstable; urgency=low * Add support for principal-url and calendar-home-set properties. diff --git a/debian/control b/debian/control index db8c63b6..9b0d0ddc 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: rscds Section: web Priority: extra Maintainer: Andrew McMillan -Standards-Version: 3.6.3 +Standards-Version: 3.7.3 Build-Depends: debhelper Package: rscds @@ -10,7 +10,7 @@ Architecture: all Depends: debconf (>= 1.0.32), php5 | php4 (>= 4:4.3), php5-pgsql | php4-pgsql(>= 3:4.3.0), postgresql-client-8.2 | postgresql-client-8.1 | postgresql-client-8.0 | postgresql-client (>= 7.4), libawl-php (>=0.20), libclass-dbi-pg-perl, php5 | php4-domxml Description: DAViCal Calendar Server The DAViCal Calendar Server is designed to trivially store - CalDAV calendars, such as those from Evolution, Sunbird/Lightning - or Mulberry, in a central location, providing shared calendars, - free/busy publication and basic administration (grouping, delegating, - etc). + CalDAV calendars, such as those from Evolution, Sunbird/Lightning, + Mulberry, iCal or SOHO Organizer, in a central location, providing + shared calendars, free/busy publication and basic administration + (grouping, delegating, etc). diff --git a/inc/always.php b/inc/always.php index 20057428..54192d7d 100644 --- a/inc/always.php +++ b/inc/always.php @@ -85,7 +85,7 @@ awl_set_locale($c->default_locale); * */ $c->code_version = 0; -$c->version_string = '0.9.2'; // The actual version # is replaced into that during the build /release process +$c->version_string = '0.9.3'; // 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]; @@ -231,6 +231,3 @@ function ConstructURL( $partial_path ) { return $url; } - - -?> \ No newline at end of file