Skip to content

Commit ef838b7

Browse files
authored
Prepare for 11.0.2-rc.1 release candidate. (#2063)
1 parent 3a0070c commit ef838b7

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

bin/xdmod-upgrade

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ ini_set('memory_limit', -1);
2828
$supportedUpgrades = array(
2929
'10.5.0' => '10.5.1',
3030
'10.5.1' => '11.0.0',
31-
'11.0.0' => '11.0.1'
31+
'11.0.0' => '11.0.1',
32+
'11.0.1' => '11.0.2'
3233
);
3334

3435
/**
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
/**
3+
* Update config files from version 11.0.1 to 11.0.2
4+
*/
5+
6+
namespace OpenXdmod\Migration\Version1101To1102;
7+
8+
use OpenXdmod\Migration\ConfigFilesMigration as AbstractConfigFilesMigration;
9+
10+
class ConfigFilesMigration extends AbstractConfigFilesMigration
11+
{
12+
13+
/**
14+
* Update portal_settings.ini with the new version number.
15+
*/
16+
public function execute()
17+
{
18+
$this->assertPortalSettingsIsWritable();
19+
$this->assertModulePortalSettingsAreWritable();
20+
$this->writePortalSettingsFile();
21+
$this->writeModulePortalSettingsFiles();
22+
}
23+
}

configuration/portal_settings.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ contact_page_recipient = ""
55
tech_support_recipient = ""
66

77
; The version number is updated during the upgrade process.
8-
version = "11.0.1"
8+
version = "11.0.2"
99

1010
debug_mode = "off"
1111
debug_recipient = ""

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ defaults:
3838
layout: "page"
3939
version: "11.0"
4040
prev_sw_version: "10.5.1"
41-
sw_version: "11.0.1"
42-
rpm_version: "11.0.1-1"
41+
sw_version: "11.0.2"
42+
rpm_version: "11.0.2-1"
4343
style: "effervescence"
4444
tocversion: "v11_0toc"
4545

open_xdmod/modules/xdmod/build.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "xdmod",
3-
"version": "11.0.1",
4-
"release": "1",
3+
"version": "11.0.2",
4+
"release": "rc.1",
55
"files": {
66
"include_paths": [
77
"/"

0 commit comments

Comments
 (0)