From 01a8f66eccc7680db64566ba2035b42bf991fd71 Mon Sep 17 00:00:00 2001 From: Yilei Yang Date: Tue, 10 Jan 2023 16:11:21 -0800 Subject: [PATCH] Preparing the release of absl-py 1.4.0. PiperOrigin-RevId: 501119479 Change-Id: Ic5410faab1a2b3ecab401706c4823a9174a7053e --- CHANGELOG.md | 9 ++++++++- setup.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ee49264..c8006e9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com). ## Unreleased -### Changed +Nothing notable unreleased. + +## 1.4.0 (2023-01-11) + +### New + * (testing) Added `@flagsaver.as_parsed`: this allows saving/restoring flags using string values as if parsed from the command line and will also reflect other flag states after command line parsing, e.g. `.present` is set. +### Changed + * (logging) If no log dir is specified `logging.find_log_dir()` now falls back to `tempfile.gettempdir()` instead of `/tmp/`. diff --git a/setup.py b/setup.py index f947fd7b..1a119f58 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ setuptools.setup( name='absl-py', - version='1.3.0', + version='1.4.0', description=( 'Abseil Python Common Libraries, ' 'see https://github.com/abseil/abseil-py.'),