Pre-release 0.9.4.3

This commit is contained in:
Andrew McMillan 2008-04-13 01:01:52 +12:00
parent 61f6a82d55
commit abe2150e63
3 changed files with 18 additions and 2 deletions

View File

@ -1 +1 @@
0.9.4
0.9.4.3

16
debian/changelog vendored
View File

@ -1,3 +1,19 @@
rscds (0.9.4.3) unstable; urgency=low
* Work on making the installation process more foolproof.
-- Andrew McMillan <debian@mcmillan.net.nz> 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 <debian@mcmillan.net.nz> Sat, 12 Apr 2008 21:16:57 +1200
rscds (0.9.4) unstable; urgency=low
* Performance improvements to get_permissions()

View File

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