From 88c93c712b7c3a8316126e22248bbce8d59ede1c Mon Sep 17 00:00:00 2001 From: Jason Cox Date: Sat, 4 Jan 2025 18:57:02 -0800 Subject: [PATCH] Prep for v0.12.3 --- RELEASE.md | 5 +++++ pypowerwall/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 8926153..0d194f2 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,10 @@ # RELEASE NOTES +## v0.12.3 - Custom GW IP + +* Fix TEDAPI URL from constant GW_IP to constructor selectable host gw_ip by @Nexarian in https://github.com/jasonacox/pypowerwall/pull/129 - The hard-coded 192.168.91.1 for the TEDAPI internal endpoint doesn't always work if you're using NAT. This change enables support for this use-case. +* See https://gist.github.com/jasonacox/91479957d0605248d7eadb919585616c?permalink_comment_id=5373785#gistcomment-5373785 for NAP implementation example. + ## v0.12.2 - Cache Expiration Fix * Fix bug in cache expiration timeout code that was not honoring pwcacheexpire setting. Raised by @erikgiesele in https://github.com/jasonacox/pypowerwall/issues/122 - PW_CACHE_EXPIRE=0 not possible? (Proxy) diff --git a/pypowerwall/__init__.py b/pypowerwall/__init__.py index c93c616..b934029 100644 --- a/pypowerwall/__init__.py +++ b/pypowerwall/__init__.py @@ -88,7 +88,7 @@ from typing import Union, Optional import time -version_tuple = (0, 12, 2) +version_tuple = (0, 12, 3) version = __version__ = '%d.%d.%d' % version_tuple __author__ = 'jasonacox'