From fa0397f2f3a54d6aeafdd5392115fc80c200edb8 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Fri, 27 Nov 2020 15:18:43 +0100 Subject: [PATCH] version bump --- clam/clamdispatcher.py | 2 +- clam/common/data.py | 2 +- codemeta.json | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clam/clamdispatcher.py b/clam/clamdispatcher.py index d3a7c86a..fb54b8d2 100755 --- a/clam/clamdispatcher.py +++ b/clam/clamdispatcher.py @@ -24,7 +24,7 @@ import shutil import json -VERSION = '3.0.21' +VERSION = '3.0.22' sys.path.append(sys.path[0] + '/..') diff --git a/clam/common/data.py b/clam/common/data.py index 6d8c4f95..9732c5a0 100644 --- a/clam/common/data.py +++ b/clam/common/data.py @@ -34,7 +34,7 @@ import clam.common.util import clam.common.viewers -VERSION = '3.0.21' +VERSION = '3.0.22' #dirs for services shipped with CLAM itself CONFIGDIR = os.path.abspath(os.path.dirname(__file__) + '/../config/') diff --git a/codemeta.json b/codemeta.json index 9015b3a3..6be666dc 100644 --- a/codemeta.json +++ b/codemeta.json @@ -10,7 +10,7 @@ "@type": "SoftwareSourceCode", "identifier": "clam", "name": "CLAM", - "version": "3.0.21", + "version": "3.0.22", "description": "Quickly turn command-line applications into RESTful webservices with a web-application front-end. You provide a specification of your command line application, its input, output and parameters, and CLAM wraps around your application to form a fully fledged RESTful webservice. ", "license": "https://spdx.org/licenses/GPL-3.0", "url": "https://proycon.github.io/clam", diff --git a/setup.py b/setup.py index 926a732a..aa393312 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read(fname): setup( name = "CLAM", - version = "3.0.21", #also change in clam.common.data.VERSION and dispatcher.py and codemeta.json + version = "3.0.22", #also change in clam.common.data.VERSION and dispatcher.py and codemeta.json author = "Maarten van Gompel", author_email = "proycon@anaproy.nl", description = ("Turns command-line NLP tools into fully-fledged RESTful webservices with an auto-generated web-interface for human end-users."),