aboutsummaryrefslogtreecommitdiff
path: root/absl/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'absl/CHANGELOG.md')
-rw-r--r--absl/CHANGELOG.md13
1 files changed, 10 insertions, 3 deletions
diff --git a/absl/CHANGELOG.md b/absl/CHANGELOG.md
index b35c612..7a1de2f 100644
--- a/absl/CHANGELOG.md
+++ b/absl/CHANGELOG.md
@@ -6,7 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com).
## Unreleased
-Nothing notable unreleased.
+### Added
+
+* (app) Type annotations for public `app` interfaces.
+
+### Changed
+
+* (app) Annotated the `flag_parser` paramteter of `run` as keyword-only. This
+ keyword-only constraint will be enforced at runtime in a future release.
## 0.12.0 (2021-03-08)
@@ -62,8 +69,8 @@ Nothing notable unreleased.
* (testing) Failed tests output a copy/pastable test id to make it easier to
copy the failing test to the command line.
-* (testing) `@parameterized.parameters` now treats a single `abc.Mapping` as
- a single test case, consistent with `named_parameters`. Previously the
+* (testing) `@parameterized.parameters` now treats a single `abc.Mapping` as a
+ single test case, consistent with `named_parameters`. Previously the
`abc.Mapping` is treated as if only its keys are passed as a list of test
cases. If you were relying on the old inconsistent behavior, explicitly
convert the `abc.Mapping` to a `list`.