aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYilei "Dolee" Yang <yileiyang@google.com>2023-01-10 17:41:17 -0800
committerGitHub <noreply@github.com>2023-01-10 17:41:17 -0800
commit127c98870edf5f03395ce9cf886266fa5f24455e (patch)
tree584e932769805f31b423ac40f952d5c7a504adf2
parent9df6b4eb5c89be46a4e045658a5828802e7d88b8 (diff)
parent0328536a93bcf775c9b42aa97da0a25a8e48f56e (diff)
downloadabsl-py-127c98870edf5f03395ce9cf886266fa5f24455e.tar.gz
Merge pull request #211 from yilei/push_up_to_501119479upstream/v1.4.0
Push up to 501119479
-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.'),