From 094c0bf4b6fd613e8669a64c86fbda94d2b3a761 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Wed, 28 Apr 2021 11:38:57 +0200 Subject: [PATCH] ### 0.0.31 Release * ------------------------------------- * Fixed #211 ECDC-templates: change URL to for_url() * Fixed #213 WHO-template: change URL to for_url() * ------------------------------------- * Fixed #83 WhoImport.get_new_dates_as_array() SQLalchemy instead of SQL * Fixed #219 WhoImport.countries() SQLalchemy instead of SQL * ------------------------------------- * Fixed #196 OwidImport.get_new_dates_reported_as_array() needs implementation --- README.md | 4 ++-- package.json | 2 +- setup.cfg | 4 ++-- setup.py | 2 +- src/covid19/package.json | 2 +- version | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2413dba5..fe8a32de 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # covid19python -* Version 0.0.31 +* Version 0.0.32 ## git -* github: https://github.com/thomaswoehlke/covid19python.git +* github: https://git.noc.ruhr-uni-bochum.de/thomaswoehlke/flask-covid19.git ## Data Sources: * [WHO](https://covid19.who.int/WHO-COVID-19-global-data.csv) diff --git a/package.json b/package.json index 01784438..e9f0cc84 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flask-covid19", - "version": "0.0.31", + "version": "0.0.32", "description": "Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.", "main": "index.js", "dependencies": {}, diff --git a/setup.cfg b/setup.cfg index 6951bff0..9e13b307 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] name = flask-covid19 -version = 0.0.31 -url = https://github.com/thomaswoehlke/covid19python.git +version = 0.0.32 +url = https://git.noc.ruhr-uni-bochum.de/thomaswoehlke/flask-covid19.git author = Thomas Woehlke author_email = thomas.woehlke@gmail.com license = GNU General Public License v3 (GPLv3) diff --git a/setup.py b/setup.py index 703699f2..eb4da3fa 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import subprocess from setuptools import find_packages, setup -version = '0.0.31' +version = '0.0.32' needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv) pytest_runner = ['pytest-runner'] if needs_pytest else [] diff --git a/src/covid19/package.json b/src/covid19/package.json index 1c88617c..ebcf5a0f 100644 --- a/src/covid19/package.json +++ b/src/covid19/package.json @@ -1,6 +1,6 @@ { "name": "flask-covid19-static", - "version": "0.0.31", + "version": "0.0.32", "description": "Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.", "main": "index.js", "repository": { diff --git a/version b/version index 700703b9..f9d08f8f 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.0.31 \ No newline at end of file +0.0.32 \ No newline at end of file -- GitLab