Skip to content

Commit 97f8c26

Browse files
committed
Distinguish 3.5 from 3.6
1 parent 2ff346b commit 97f8c26

File tree

7 files changed

+33
-14
lines changed

7 files changed

+33
-14
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,22 @@ jobs:
1919
database: pgsql
2020
test: 'test'
2121
upgrade: 'upgrade'
22-
upgrade_test: 'stable-3_3_0,stable-3_4_0'
22+
upgrade_test: 'stable-3_3_0,stable-3_4_0,stable-3_5_0'
2323
- php-version: 8.2
2424
database: mariadb
2525
test: 'test'
2626
- php-version: 8.2
2727
database: mysql
2828
test: 'test'
2929
upgrade: 'upgrade'
30-
upgrade_test: 'stable-3_3_0,stable-3_4_0'
30+
upgrade_test: 'stable-3_3_0,stable-3_4_0,stable-3_5_0'
3131
- php-version: 8.3
3232
database: mysql
3333
test: 'test'
3434
- php-version: 8.3
3535
database: pgsql
3636
test: 'test'
37-
38-
name: ops
37+
name: ops-main
3938
steps:
4039
- uses: pkp/pkp-github-actions@v1
4140
with:

.github/workflows/schedule.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
database: pgsql
1616
test: 'test'
1717
upgrade: 'upgrade'
18-
upgrade_test: 'stable-3_3_0,stable-3_4_0'
18+
upgrade_test: 'stable-3_3_0,stable-3_4_0,stable-3_5_0'
1919
SAVE_BUILD: 'save_build'
2020
- php-version: 8.2
2121
validate: 'validate'
@@ -28,7 +28,7 @@ jobs:
2828
test: 'test'
2929
SAVE_BUILD: 'save_build'
3030
upgrade: 'upgrade'
31-
upgrade_test: 'stable-3_3_0,stable-3_4_0'
31+
upgrade_test: 'stable-3_3_0,stable-3_4_0,stable-3_5_0'
3232
name: ops-main-schedule
3333
steps:
3434
- uses: pkp/pkp-github-actions@v1
@@ -60,7 +60,7 @@ jobs:
6060
test: 'test'
6161
SAVE_BUILD: 'save_build'
6262
upgrade: 'upgrade'
63-
upgrade_test: '3.1.0,3.1.1-2,3.1.2,stable-3_2_0,stable-3_2_1,stable-3_3_0'
63+
upgrade_test: '3.1.0,3.1.1-2,3.1.2,stable-3_2_0,stable-3_2_1,stable-3_3_0,stable-3_4_0'
6464
name: ops-stable-3_5_0
6565
steps:
6666
- uses: pkp/pkp-github-actions@v1

dbscripts/xml/install.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Installation descriptor file.
1111
-->
1212

13-
<install version="3.5.0.0">
13+
<install version="3.6.0.0">
1414
<code function="checkPhpVersion" />
1515

1616
<code function="createDirectories"/>

dbscripts/xml/upgrade.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
-->
1313

14-
<install version="3.5.0.0">
14+
<install version="3.6.0.0">
1515
<code function="checkPhpVersion" />
1616

1717
<upgrade minversion="0.9.9.0" maxversion="3.2.9.9">
@@ -152,6 +152,10 @@
152152
<note file="docs/release-notes/README-3.5.0" />
153153
</upgrade>
154154

155+
<upgrade minversion="3.1.0.0" maxversion="3.5.9.9">
156+
<note file="docs/release-notes/README-3.6.0" />
157+
</upgrade>
158+
155159
<!-- update plugin configuration - should be done as the final upgrade task -->
156160
<code function="addPluginVersions" />
157161
</install>

dbscripts/xml/version.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<version>
1414
<application>ops</application>
1515
<type>core</type>
16-
<release>3.5.0.0</release>
17-
<tag>3_5_0-0</tag>
18-
<date>2024-01-01</date>
16+
<release>3.6.0.0</release>
17+
<tag>3_6_0-0</tag>
18+
<date>2026-01-01</date>
1919
<info>https://pkp.sfu.ca/ops/</info>
20-
<package>https://pkp.sfu.ca/ops/download/ops-3.5.0-0.tar.gz</package>
20+
<package>https://pkp.sfu.ca/ops/download/ops-3.6.0-0.tar.gz</package>
2121
</version>

docs/release-notes/README-3.6.0

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
OPS 3.6.0 Release Notes
2+
Git tag: 3_6_0-0
3+
4+
Release date:
5+
============================
6+
7+
Configuration Changes
8+
---------------------
9+
10+
See config.TEMPLATE.inc.php for a description and examples of all supported
11+
configuration parameters.
12+
13+
14+
New Features
15+
------------
16+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "OPS",
33
"description": "Open Preprint Systems (OPS) is a preprint server management system that has been developed by the Public Knowledge Project through its federally funded efforts to expand and improve access to research.",
4-
"version": "3.5.0",
4+
"version": "3.6.0",
55
"author": "Public Knowledge Project",
66
"private": true,
77
"scripts": {

0 commit comments

Comments
 (0)