Release 0.9.2

This commit is contained in:
Andrew McMillan 2007-11-04 23:32:54 +13:00
parent 7712649e68
commit 5976c52650
3 changed files with 14 additions and 2 deletions

View File

@ -1 +1 @@
0.9.1
0.9.2

12
debian/changelog vendored
View File

@ -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 <debian@mcmillan.net.nz> Sun, 04 Nov 2007 23:31:10 +1300
rscds (0.9.1) unstable; urgency=low
* Reduce debug logging noise when debugging is iff

View File

@ -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];