diff --git a/VERSION b/VERSION index a602fc9e..148890aa 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.4 +0.9.4.3 diff --git a/debian/changelog b/debian/changelog index 495ea9e0..0d69cab9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +rscds (0.9.4.3) unstable; urgency=low + + * Work on making the installation process more foolproof. + + -- Andrew McMillan Sun, 13 Apr 2008 00:55:16 +1200 + +rscds (0.9.4.2) unstable; urgency=low + + * Add Japanese translation by Shu NAKAMAE + * Reverse logic for maintenance of user relationships. + * Rationalise package dependencies. + * Improve translatability of admin interface. + * Bug fixes and enhancements to LDAP driver. + + -- Andrew McMillan Sat, 12 Apr 2008 21:16:57 +1200 + rscds (0.9.4) unstable; urgency=low * Performance improvements to get_permissions() diff --git a/inc/always.php b/inc/always.php index 88653e88..d2146c28 100644 --- a/inc/always.php +++ b/inc/always.php @@ -96,7 +96,7 @@ awl_set_locale($c->default_locale); * */ $c->code_version = 0; -$c->version_string = '0.9.4'; // The actual version # is replaced into that during the build /release process +$c->version_string = '0.9.4.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];