From 6c50d8c5829dbdbad51e3b7691a0565fab7b2724 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Tue, 29 Aug 2023 11:14:19 +0200 Subject: [PATCH] don't jump to version 2.0 The MAJOR.MINOR of the version should match the maximum CWL version MAJOR.MINOR --- Makefile | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ee627d3..7e7e47c 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ DEVPKGS=diff_cover black pylint pep257 pydocstyle flake8 tox tox-pyenv \ auto-walrus -rtest-requirements.txt -rmypy-requirements.txt DEBDEVPKGS=pylint python3-coverage sloccount \ python3-flake8 shellcheck -VERSION=2.0.0 # please also update setup.py +VERSION=1.2.9 # please also update setup.py ## all : default task (install cwl-upgrader in dev mode) all: dev diff --git a/setup.py b/setup.py index b235deb..9b84593 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="cwl-upgrader", - version="2.0.0", + version="1.2.9", description="Common Workflow Language standalone document upgrader", long_description=open(README).read(), author="Common Workflow Language contributors",