From 99ae43f29486bb2930e988513f9b6d953be8b465 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Wed, 17 Feb 2021 20:48:21 +0100 Subject: [PATCH] ### 0.0.17 Release * Fixed #82 change to ORM ClassHierarchy * Fixed #42 SQLalchemy instead of SQL: WhoImport.get_new_dates_as_array() * Fixed #83 SQLalchemy instead of SQL in WhoImport.get_new_dates_as_array * Fixed #108 change to ORM ClassHierarchy in: EcdcImport.get_countries_of_continent * Fixed #39 SQLalchemy instead of SQL: AllModelClasses.remove_all() * Fixed #40 SQLalchemy instead of SQL: EcdcImport.get_date_rep() * Fixed #41 SQLalchemy instead of SQL: EcdcImport.get_countries_of_continent() * Fixed #107 SQLalchemy instead of SQL in: EcdcImport.get_countries_of_continent * Fixed #109 SQLalchemy instead of SQL in: EcdcImport.get_date_rep * Fixed #110 SQLalchemy instead of SQL in: EcdcImport.get_continent * Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise * Fixed #128 add fields from csv to RkiLandkreiseImport * Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021 * Fixed #140 move WhoImport to RKI in: rk_service_import.py * Fixed #125 implement RkiLandkreise * Fixed #126 implement RkiBundeslaenderImport --- package.json | 2 +- setup.cfg | 2 +- setup.py | 2 +- src/covid19/package.json | 2 +- version | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index c4327de5..ec0ca59d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "covid19python-thomaswoehlke", - "version": "0.0.17", + "version": "0.0.18", "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 ea025746..16530887 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = thomaswoehlke-covid19python -version = 0.0.17 +version = 0.0.18 url = https://github.com/thomaswoehlke/covid19python.git author = Thomas Woehlke author_email = thomas.woehlke@gmail.com diff --git a/setup.py b/setup.py index f89ac019..955acc2e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import sys from setuptools import find_packages, setup -version = '0.0.17' +version = '0.0.18' 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 91a7cfcb..93943ab3 100644 --- a/src/covid19/package.json +++ b/src/covid19/package.json @@ -1,6 +1,6 @@ { "name": "covid19python-thomaswoehlke-static", - "version": "0.0.17", + "version": "0.0.18", "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 927734f1..a6186220 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.0.17 \ No newline at end of file +0.0.18 \ No newline at end of file -- GitLab