From da078c9e1f4aa023b7be78c75bbed6be340eedd3 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Tue, 10 Nov 2020 14:49:07 +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 27cf700c..0175dfc2 100755 --- a/clam/clamdispatcher.py +++ b/clam/clamdispatcher.py @@ -24,7 +24,7 @@ import shutil import json -VERSION = '3.0.19' +VERSION = '3.0.20' sys.path.append(sys.path[0] + '/..') diff --git a/clam/common/data.py b/clam/common/data.py index 5cfe73e3..7614f09b 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.19' +VERSION = '3.0.20' #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 7b0e7261..a6dc8fa7 100644 --- a/codemeta.json +++ b/codemeta.json @@ -10,7 +10,7 @@ "@type": "SoftwareSourceCode", "identifier": "clam", "name": "CLAM", - "version": "3.0.19", + "version": "3.0.20", "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 aa2217de..65455cb8 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read(fname): setup( name = "CLAM", - version = "3.0.19", #also change in clam.common.data.VERSION and dispatcher.py and codemeta.json + version = "3.0.20", #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."),