aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYilei Yang <yileiyang@google.com>2023-01-10 16:11:21 -0800
committerCopybara-Service <copybara-worker@google.com>2023-01-10 16:11:56 -0800
commit01a8f66eccc7680db64566ba2035b42bf991fd71 (patch)
treedd755dcf242116c2f0db346ef3be5b1b9e80b1e1
parentfd32fea9dac2f3faa3516d4f9dca91625d886e90 (diff)
downloadabsl-py-01a8f66eccc7680db64566ba2035b42bf991fd71.tar.gz
Preparing the release of absl-py 1.4.0.
PiperOrigin-RevId: 501119479 Change-Id: Ic5410faab1a2b3ecab401706c4823a9174a7053e
-rw-r--r--CHANGELOG.md9
-rw-r--r--setup.py2
2 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9ee4926..c8006e9 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 f947fd7..1a119f5 100644
--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@ with open(_README_PATH, 'rb') as fp:
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.'),