From f42209e632c3c4e5fe7b7c2ac3e5f659944d9143 Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sat, 5 Apr 2025 10:10:51 -0400 Subject: [PATCH 1/2] chore: cut 0.16.0 release --- HISTORY.rst | 8 +++++++- tiingo/__version__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d05389e..946a5be 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,13 @@ ======= History ======= -0.16.0 (2024-XX - Unreleased) +0.17.0 (2025-XX - Unreleased) +-------------------------------- + +* WIP + + +0.16.0 (2025-04-05) -------------------------------- * Dev: New config for readthedocs diff --git a/tiingo/__version__.py b/tiingo/__version__.py index 68f4981..89544a8 100644 --- a/tiingo/__version__.py +++ b/tiingo/__version__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = "0.15.6" +__version__ = "0.16.0" From 6ccdbc4513192f1e97221a57d1f3db8a4a05d9f5 Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Sat, 5 Apr 2025 10:15:40 -0400 Subject: [PATCH 2/2] fix: upgrade black formatter --- tiingo/restclient.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tiingo/restclient.py b/tiingo/restclient.py index 869baad..4a03ee1 100644 --- a/tiingo/restclient.py +++ b/tiingo/restclient.py @@ -8,6 +8,7 @@ from requests.exceptions import HTTPError # TODO: Possibly print HTTP json response if available? class RestClientError(Exception): "Wrapper around HTTP Errors" + pass