diff --git a/example_workflows/arithmetic/workflow.json b/example_workflows/arithmetic/workflow.json index 4124a7d..9ffb921 100644 --- a/example_workflows/arithmetic/workflow.json +++ b/example_workflows/arithmetic/workflow.json @@ -1,5 +1,5 @@ { - "version": "0.0.1", + "version": "0.1.0", "nodes": [ {"id": 0, "type": "function", "value": "workflow.get_prod_and_div"}, {"id": 1, "type": "function", "value": "workflow.get_sum"}, diff --git a/example_workflows/nfdi/workflow.json b/example_workflows/nfdi/workflow.json index 6a546f3..b9135dc 100644 --- a/example_workflows/nfdi/workflow.json +++ b/example_workflows/nfdi/workflow.json @@ -1,5 +1,5 @@ { - "version": "0.0.1", + "version": "0.1.0", "nodes": [ {"id": 0, "type": "function", "value": "workflow.generate_mesh"}, {"id": 1, "type": "function", "value": "workflow.convert_to_xdmf"}, diff --git a/example_workflows/quantum_espresso/workflow.json b/example_workflows/quantum_espresso/workflow.json index 7b1464b..e653d59 100644 --- a/example_workflows/quantum_espresso/workflow.json +++ b/example_workflows/quantum_espresso/workflow.json @@ -1,5 +1,5 @@ { - "version": "0.0.1", + "version": "0.1.0", "nodes": [ {"id": 0, "type": "function", "value": "workflow.get_bulk_structure"}, {"id": 1, "type": "function", "value": "workflow.calculate_qe"}, diff --git a/python_workflow_definition/pyproject.toml b/python_workflow_definition/pyproject.toml index 8a50926..87b8e4c 100644 --- a/python_workflow_definition/pyproject.toml +++ b/python_workflow_definition/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "python_workflow_definition" -version = "0.0.1" +version = "0.1.0" description = "Python Workflow Definition - workflow interoperability for aiida, jobflow and pyiron" authors = [ { name = "Jan Janssen", email = "janssen@mpie.de" }, diff --git a/python_workflow_definition/src/python_workflow_definition/shared.py b/python_workflow_definition/src/python_workflow_definition/shared.py index da2d9fa..ef7bb23 100644 --- a/python_workflow_definition/src/python_workflow_definition/shared.py +++ b/python_workflow_definition/src/python_workflow_definition/shared.py @@ -6,7 +6,7 @@ SOURCE_PORT_LABEL = "sourcePort" TARGET_LABEL = "target" TARGET_PORT_LABEL = "targetPort" -VERSION_NUMBER = "0.0.1" +VERSION_NUMBER = "0.1.0" VERSION_LABEL = "version"