From e595a4bb8bab99bb6f161ddc352da7a1b14ed4e6 Mon Sep 17 00:00:00 2001 From: Uman Shahzad Date: Mon, 27 Nov 2023 10:08:23 +0500 Subject: [PATCH] push 5.0.0 --- CHANGELOG.md | 9 +++++++++ ipinfo/version.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e723a1..0fe3397 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # IPInfo Changelog +## 5.0.0 + +- BREAKING: No longer requiring a JSON file for changing the + country/currency/etc data that's returned. Will now accept an in-memory map. +- Throwing general API error responses as proper `APIError` error types. +- Added an iterator version of getting batch IPs. See `getBatchDetailsIter` in + the handler. + ## 4.4.3 - Added `CountryFlagURL` to the details object. @@ -8,6 +16,7 @@ ## 4.4.2 - Patch fix for empty `ip_address` crash. + ## 4.4.1 - Patch fix for handler crashing in windows environment. diff --git a/ipinfo/version.py b/ipinfo/version.py index 9166545..d8de304 100644 --- a/ipinfo/version.py +++ b/ipinfo/version.py @@ -1 +1 @@ -SDK_VERSION = "4.4.3" +SDK_VERSION = "5.0.0"