Skip to content

Commit 69376f8

Browse files
authored
Merge pull request #94 from scailfin/fix/repo-url
Reset workflow repository URL to master branch
2 parents ad3501f + ad223ca commit 69376f8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,8 @@
148148

149149
* Add option to resolve references to external files when reading Yaml files.
150150
* Support inclusion and import of files in instructions markdown text.
151+
152+
153+
### 0.9.2 - 2021-09-30
154+
155+
* Reset hard-coded workflow repository URL to point to the master branch.

flowserv/model/workflow/repository.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515

1616
"""Repository URL."""
17-
# URL = 'https://raw.githubusercontent.com/scailfin/flowserv-workflow-repository/master/templates.json'
18-
URL = 'https://raw.githubusercontent.com/scailfin/flowserv-workflow-repository/flowserv/0.9.0/templates.json'
17+
URL = 'https://raw.githubusercontent.com/scailfin/flowserv-workflow-repository/master/templates.json'
1918

2019

2120
class WorkflowRepository(object):

flowserv/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
# terms of the MIT License; see LICENSE file for more details.
88

99
"""Information about the current version of the flowServ package."""
10-
__version__ = '0.9.1'
10+
__version__ = '0.9.2'

0 commit comments

Comments
 (0)