Skip to content

Commit d5cf9c2

Browse files
authored
Merge pull request #11680 from owncloud/update_docs_related_stuff
[docs-only] A first set of doc changes for 7.3
2 parents f9c7d91 + 20625b7 commit d5cf9c2

File tree

5 files changed

+202
-177
lines changed

5 files changed

+202
-177
lines changed

docs/helpers/changed_envvars.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@
2323
# tagged versions must be of format: 'tags/v7.1.0'
2424
# branches are different, master or stable-x.y: 'heads/master'
2525
# stick with master because the follow up process is much easier and you avoid confusion
26-
versionOld: str = 'tags/v7.1.0'
26+
versionOld: str = 'tags/v7.2.0'
2727
versionNew: str = 'heads/master'
2828

2929
# CHANGE according your needs
30-
from_version: str = '7.1.0'
31-
to_version: str = '7.2.0'
30+
from_version: str = '7.2.0'
31+
to_version: str = '7.3.0'
3232

3333
# CHANGE according your needs
3434
# this will create files like 5.0.0-7.0.0-added and 5.0.0-7.0.0-removed
3535
# this should match which versions you compare. master is ok if that is the base for a named release
36-
nameComponent: str = '7.1.0-7.2.0'
36+
nameComponent: str = '7.2.0-7.3.0'
3737

3838
# ADD new elements when a new version has been published so that it gets excluded
3939
# array of version patterns to be excluded for added items. we dont need patch versions
40-
excludePattern: list[str] = ['pre5.0', '5.0', '6.0', '6.0.0', '6.0.1', '6.1.0', '6.7', '7.0', '7.0.0', '7.1.0']
40+
excludePattern: list[str] = ['pre5.0', '5.0', '6.0', '6.0.0', '6.0.1', '6.1.0', '6.7', '7.0', '7.0.0', '7.1.0', '7.2.0']
4141

4242
# DO NOT CHANGE
4343
# this is the path the added/removed result is written to

0 commit comments

Comments
 (0)