From 1ea01e286a75f2b3c75097e3218e6717aa638c18 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Sat, 20 Feb 2021 16:42:12 +0100 Subject: [PATCH] ### 0.0.18 Release * Fixed #133 implement RkiBundeslaenderService.task_database_drop_create * Fixed #134 implement RkiBundeslaenderService.run_update_dimension_tables_only * Fixed #135 implement RkiBundeslaenderService.run_update_fact_table_incremental_only * Fixed #136 implement RkiBundeslaenderService.run_update_fact_table_initial_only * Fixed #137 implement RkiBundeslaenderService.run_update_star_schema_incremental * Fixed #138 implement RkiBundeslaenderService.run_update_star_schema_initial * Fixed #132 refactor RkiBundeslaenderService to new method scheme introduced 07.02.2021 * ------------------------------------- * Fixed #147 refactor RkiBundeslaenderServiceUpdate.__update_who_date_reported * Fixed #148 refactor RkiBundeslaenderServiceUpdate.__update_who_region * Fixed #149 refactor RkiBundeslaenderServiceUpdate.__update_who_country * Fixed #150 refactor RkiBundeslaenderServiceUpdate.__update_who_global_data * Fixed #151 refactor RkiBundeslaenderServiceUpdate.__update_who_global_data_short * Fixed #152 refactor RkiBundeslaenderServiceUpdate.__update_who_global_data_initial * Fixed #153 refactor RkiBundeslaenderServiceUpdate.update_db * Fixed #154 refactor RkiBundeslaenderServiceUpdate.update_db_short * Fixed #155 refactor RkiBundeslaenderServiceUpdate.update_db_initial * ------------------------------------- * Fixed #131 change to ORM ClassHierarchy in: RkiGermanyDataImportTable.get_new_dates_as_array * Fixed #129 change to ORM ClassHierarchy in: RkiLandkreiseImport.get_new_dates_as_array * Fixed #146 add Tasks and URLs for starting Tasks to rki_views * Fixed #127 implement RkiBundeslaenderImport.get_dates_reported * ------------------------------------- * Fixed #141 implement RkiBundeslaenderServiceUpdate.update_dimension_tables_only * Fixed #142 implement RkiBundeslaenderServiceUpdate.update_fact_table_incremental_only * Fixed #143 implement RkiBundeslaenderServiceUpdate.update_fact_table_initial_only * Fixed #144 implement RkiBundeslaenderServiceUpdate.update_star_schema_incremental * Fixed #145 implement RkiBundeslaenderServiceUpdate.update_star_schema_initial --- 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 ec0ca59d..8e4bbeec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "covid19python-thomaswoehlke", - "version": "0.0.18", + "version": "0.0.19", "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 16530887..00807941 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = thomaswoehlke-covid19python -version = 0.0.18 +version = 0.0.19 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 955acc2e..bfdde355 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import sys from setuptools import find_packages, setup -version = '0.0.18' +version = '0.0.19' 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 93943ab3..3a1922c9 100644 --- a/src/covid19/package.json +++ b/src/covid19/package.json @@ -1,6 +1,6 @@ { "name": "covid19python-thomaswoehlke-static", - "version": "0.0.18", + "version": "0.0.19", "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 a6186220..c5d4220b 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.0.18 \ No newline at end of file +0.0.19 \ No newline at end of file -- GitLab