From c1a1372cfbcc18d79b521e61bdd762539edda3c2 Mon Sep 17 00:00:00 2001 From: Chris Brown <30196510+systemcatch@users.noreply.github.com> Date: Fri, 18 Feb 2022 10:12:16 +0000 Subject: [PATCH] Bump version to 0.1.6 and update changelog --- README.md | 4 ++++ eiapy.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cc9f5c3..29421da 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,10 @@ setx EIA_KEY "type_your_api_key_within_the_quotes" - The API expects timestamps in ISO 8601 format (YYYYMMDDTHHZ) with Z meaning UTC, [bad timestamps](https://github.com/systemcatch/eiapy/issues/16) will not raise errors. ### Changelog +**0.1.6** +- Changed URLs to https as http is no longer supported by EIA. +- Added python 3.9 and 3.10 to classifiers, removed 3.5. + **0.1.5** - Added Python 3.8 to supported versions. - Updated readme with advice about bad timestamps. diff --git a/eiapy.py b/eiapy.py index 05ba47b..e0f6a07 100644 --- a/eiapy.py +++ b/eiapy.py @@ -1,6 +1,6 @@ #!usr/bin/env python3 -__version__ = "0.1.5" +__version__ = "0.1.6" import os import requests diff --git a/setup.py b/setup.py index 5a5cea7..d220346 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='eiapy', - version='0.1.5', + version='0.1.6', description='A simple wrapper for the U.S. Energy Information Administration (EIA) API.', long_description=long_description, long_description_content_type='text/markdown',