Skip to content

Commit

Permalink
release v0.11.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kikkomep committed Sep 22, 2023
2 parents c36a9ea + 96de5b5 commit b3862c7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion k8s/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version: 0.10.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.11.5
appVersion: 0.11.6

# Chart dependencies
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion lifemonitor/api/models/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def get_public_workflow_version(cls, uuid, version) -> WorkflowVersion:
.join(workflow_alias, workflow_alias.id == cls.workflow_id)\
.filter(workflow_alias.uuid == lm_utils.uuid_param(uuid))\
.filter(workflow_alias.public == true())\
.filter(version == version).one() # noqa: E712
.filter(cls.version == version).one()
except NoResultFound as e:
logger.debug(e)
return None
Expand Down
2 changes: 1 addition & 1 deletion lifemonitor/static/src/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lifemonitor",
"description": "Workflow Testing Service",
"version": "0.11.5",
"version": "0.11.6",
"license": "MIT",
"author": "CRS4",
"main": "../dist/js/lifemonitor.min.js",
Expand Down
4 changes: 2 additions & 2 deletions specs/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
openapi: "3.0.0"

info:
version: "0.11.5"
version: "0.11.6"
title: "Life Monitor API"
description: |
*Workflow sustainability service*
Expand All @@ -18,7 +18,7 @@ info:
servers:
- url: /
description: >
Version 0.11.5 of API.
Version 0.11.6 of API.
tags:
- name: GitHub Integration
Expand Down

0 comments on commit b3862c7

Please sign in to comment.