diff --git a/ChangeLog b/ChangeLog index f88494f1..c88ef5e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,16 @@ +2010-02-24 Andrew McMillan + * Release 0.9.8.3 + * Apparently CentOS 5 doesn't have DateTime class in it's PHP :-( + * Allow active/inactive setting to edit principal. + * Add a menu link to list inactive principals. + * Fix the 'ALL' button action in grants update. + * Correct 'ALL' privilege to 24 bits. + * Move location of CSS submenus slightly. + * Don't display a grant/collection stuff until a user is created. + * Provide passthru on icons, images, css and js files. + 2010-02-23 Andrew McMillan + * Release 0.9.8.2 * Include inactive support for RRULE expansion. 2010-02-23 Masahiro Mikami diff --git a/debian/changelog b/debian/changelog index 08f40b89..5a9202fb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ davical (0.9.8.3-0) unstable; urgency=low * New upstream release - -- Andrew McMillan Wed, 24 Feb 2010 16:44:36 +1300 + -- Andrew McMillan Wed, 24 Feb 2010 16:46:34 +1300 davical (0.9.8.2-0) unstable; urgency=low diff --git a/inc/always.php b/inc/always.php index 69c12298..560e04bc 100644 --- a/inc/always.php +++ b/inc/always.php @@ -131,7 +131,7 @@ awl_set_locale($c->default_locale); * */ $c->code_version = 0; -$c->version_string = '0.9.8.2'; // The actual version # is replaced into that during the build /release process +$c->version_string = '0.9.8.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];