diff --git a/python/HISTORY.md b/python/HISTORY.md index 0aecc5ef1..d80f1b611 100644 --- a/python/HISTORY.md +++ b/python/HISTORY.md @@ -12,6 +12,14 @@ This file does not generally include descriptions of patch releases (vX.Y.Z changes. (Metadata updates are best checked [upstream](https://github.com/google/libphonenumber/blob/master/release_notes.txt).) +What's new in 8.13.0 +-------------------- + +Merge to [upstream commit +185004cabd1bb4d3](https://github.com/google/libphonenumber/commit/185004cabd1bb4d3). Upstream has +removed the `leading_zero_possible` field from the `PhoneMetadata` type as part of this version; +however, this change is *not* mirrored in the Python code due to back-compatibility concerns. + What's new in 8.12.40 --------------------- diff --git a/python/phonenumbers/__init__.py b/python/phonenumbers/__init__.py index 21949da38..7916e2123 100644 --- a/python/phonenumbers/__init__.py +++ b/python/phonenumbers/__init__.py @@ -146,7 +146,7 @@ # Version number is taken from the upstream libphonenumber version # together with an indication of the version of the Python-specific code. -__version__ = "8.12.57" +__version__ = "8.13.0" __all__ = ['PhoneNumber', 'CountryCodeSource', 'FrozenPhoneNumber', 'REGION_CODE_FOR_NON_GEO_ENTITY', 'NumberFormat', 'PhoneNumberDesc', 'PhoneMetadata',