From c174530e5469c8478ea13eb48931319698398ba4 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Wed, 30 Oct 2019 14:34:25 +0100 Subject: [PATCH] post-release bugfix, use HTTPS for jquery download --- clam/clamdispatcher.py | 2 +- clam/common/data.py | 2 +- clam/static/interface.xsl | 2 +- codemeta.json | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clam/clamdispatcher.py b/clam/clamdispatcher.py index 5bb47e63..77f6371e 100755 --- a/clam/clamdispatcher.py +++ b/clam/clamdispatcher.py @@ -23,7 +23,7 @@ import signal import shutil -VERSION = '3.0.0' +VERSION = '3.0.1' sys.path.append(sys.path[0] + '/..') diff --git a/clam/common/data.py b/clam/common/data.py index 78760696..d9eba0df 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.0' +VERSION = '3.0.1' #dirs for services shipped with CLAM itself CONFIGDIR = os.path.abspath(os.path.dirname(__file__) + '/../config/') diff --git a/clam/static/interface.xsl b/clam/static/interface.xsl index 42bf551c..62e8e228 100644 --- a/clam/static/interface.xsl +++ b/clam/static/interface.xsl @@ -118,7 +118,7 @@ - + diff --git a/codemeta.json b/codemeta.json index 2f954c72..40b59a47 100644 --- a/codemeta.json +++ b/codemeta.json @@ -10,7 +10,7 @@ "@type": "SoftwareSourceCode", "identifier": "clam", "name": "CLAM", - "version": "3.0.0", + "version": "3.0.1", "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 e4118b91..29c7101f 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read(fname): setup( name = "CLAM", - version = "3.0.0", #also change in clam.common.data.VERSION and dispatcher.py and codemeta.json + version = "3.0.1", #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."),