From 336791055019f794cb54ddd8a5bf4a960ae6d4a2 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Sun, 14 Feb 2021 21:50:12 +0100 Subject: [PATCH] ### 0.0.16 Release * ------------------------------------- * Issue #82 change to ORM ClassHierarchy * Issue #108 change to ORM ClassHierarchy in: EcdcImport.get_countries_of_continent * ------------------------------------- * Fixed #111 refactor to new method scheme introduced 07.02.2021 * Fixed #117 refactor EcdcServiceUpdate to new method scheme introduced 07.02.2021 * Fixed #112 implement EcdcService.run_update_dimension_tables_only * Fixed #113 implement EcdcService.run_update_fact_table_incremental_only * Fixed #114 implement EcdcService.run_update_fact_table_initial_only * Fixed #115 implement EcdcService.run_update_star_schema_incremental * Fixed #116 implement EcdcService.run_update_star_schema_initial * Fixed #118 implement EcdcServiceUpdate.update_dimension_tables_only * Fixed #119 implement EcdcServiceUpdate.update_fact_table_incremental_only * Fixed #120 implement EcdcServiceUpdate.update_fact_table_initial_only * Fixed #121 implement EcdcServiceUpdate.update_star_schema_incremental * Fixed #122 implement EcdcServiceUpdate.update_star_schema_initial * ------------------------------------- * Fixed #163 implement url_europe_task_update_star_schema_initial in europe_views.py * Fixed #164 implement url_europe_task_update_starschema_incremental in europe_views.py * Fixed #165 implement url_europe_task_download_only in europe_views.py * Fixed #166 implement url_europe_task_import_only in europe_views.py * Fixed #167 implement url_europe_task_update_dimensiontables_only in europe_views.py * Fixed #168 implement url_europe_task_update_facttable_incremental_only in europe_views.py * Fixed #169 implement url_europe_task_update_facttable_initial_only in europe_views.py ### 0.0.17 Release * 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 | 4 +++- src/covid19/package.json | 4 ++-- version | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 92ab334f..c4327de5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "covid19python-thomaswoehlke", - "version": "0.0.16", + "version": "0.0.17", "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 c74c08c4..ea025746 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = thomaswoehlke-covid19python -version = 0.0.16 +version = 0.0.17 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 bab851e6..0fbb7172 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,8 @@ import sys from setuptools import find_packages, setup +version = '0.0.17' + needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv) pytest_runner = ['pytest-runner'] if needs_pytest else [] @@ -459,7 +461,7 @@ packages = find_packages() setup( name='thomaswoehlke-covid19python', - version='0.0.16', + version=version, url='ttps://github.com/thomaswoehlke/covid19python.git', license='GNU General Public License v3 (GPLv3)', author='Thomas Woehlke', diff --git a/src/covid19/package.json b/src/covid19/package.json index 5b5c453e..6625c5e9 100644 --- a/src/covid19/package.json +++ b/src/covid19/package.json @@ -1,6 +1,6 @@ { - "name": "covid19static", - "version": "0.0.16", + "name": "covid19python-thomaswoehlke-static", + "version": "0.0.17", "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 e484aaf2..927734f1 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.0.16 \ No newline at end of file +0.0.17 \ No newline at end of file -- GitLab