diff --git a/VERSION b/VERSION index f374f666..2003b639 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.1 +0.9.2 diff --git a/debian/changelog b/debian/changelog index d1a508fc..f55f08ed 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +rscds (0.9.2) unstable; urgency=low + + * Add support for principal-url and calendar-home-set properties. + * All events should be PUBLIC unless CLASS specifies otherwise. + * Calendars can now be set such that all events are PUBLIC. + * Add support for automatically added relationships. + * Make some use of the improvements to the iCalendar class. + * Working with iCal 3.0 from Mac OS 10.5. + * Refactoring of driver code for LDAP and external AWL DB. + + -- Andrew McMillan Sun, 04 Nov 2007 23:31:10 +1300 + rscds (0.9.1) unstable; urgency=low * Reduce debug logging noise when debugging is iff diff --git a/inc/always.php b/inc/always.php index 7f3e0073..8ce1de8d 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.1+iCal2'; // The actual version # is replaced into that during the build /release process +$c->version_string = '0.9.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];