summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@users.mediawiki.org>2005-07-05 09:04:56 +0000
committerBrion Vibber <brion@users.mediawiki.org>2005-07-05 09:04:56 +0000
commita4da515083f8b9e67b32773bcaf503ee87f82e34 (patch)
tree42bac353833465e9f67562b10e1cb78d79e37d57
parentc75209d1f96385541aee4da62fb6ca132cb645c9 (diff)
Bump version to 1.5beta21.5.0beta2
Notes
http://mediawiki.org/wiki/Special:Code/MediaWiki/9921
-rw-r--r--RELEASE-NOTES26
-rw-r--r--includes/DefaultSettings.php2
2 files changed, 27 insertions, 1 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 85ab0c96d890..6e807f8c198f 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -3,6 +3,32 @@
Security reminder: MediaWiki does not require PHP's register_globals
setting since version 1.2.0. If you have it on, turn it *off* if you can.
+== MediaWiki 1.5 beta 2 ==
+
+July 5, 2005
+
+MediaWiki 1.5 beta 2 is a preview release of the new 1.5 release series.
+While most exciting new bugs should have been ironed out at this point,
+third-party wiki operators should probably not run this beta release
+on a public site without closely following additional development.
+
+Anyone who _has_ been running beta 1 is very very strongly advised to
+upgrade to beta 2, as it fixes many bugs from the previous beta including
+a couple of HTML and SQL injections.
+
+This release should be followed by one or two release candidates and
+a 1.5.0 final within the next few weeks.
+
+Beta upgraders, note there are some minor database changes. For upgrades
+from 1.4, see the file UPGRADE for details on significant database and
+configuration file changes.
+
+Beta 2 includes a preliminary command-line XML wiki dump importer tool,
+maintenance/importDump.php, paired with maintenance/dumpBackup.php.
+These use the same format as Special:Export and Special:Import, able
+to package a wiki's entire page set independent of the backend database
+and compression format.
+
== MediaWiki 1.5 beta 1 ==
diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php
index a94f06af1dab..1063a083d1cb 100644
--- a/includes/DefaultSettings.php
+++ b/includes/DefaultSettings.php
@@ -28,7 +28,7 @@ require_once( 'includes/SiteConfiguration.php' );
$wgConf = new SiteConfiguration;
/** MediaWiki version number */
-$wgVersion = '1.5beta1';
+$wgVersion = '1.5beta2';
/** Name of the site. It must be changed in LocalSettings.php */
$wgSitename = 'MediaWiki';