diff --git a/CHANGELOG.md b/CHANGELOG.md index b5e71c01d..cc98c6373 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # OverReact Changelog +## [3.10.0](https://github.com/Workiva/over_react/compare/3.9.0...3.10.0) +- [#621] Add WithTransition wrapper component to enable "controlled" transitions using props +* [#628] Fix Redux dev tools middleware console logging when `hierarchicalLoggingEnabled` is false + ## [3.9.0](https://github.com/Workiva/over_react/compare/3.8.1...3.9.0) - [#620] Fix issue where `uiForwardRef`/`memo` components were being passed JSified props (by consuming [react-dart's `forwardRef2`/`memo2`](https://github.com/cleandart/react-dart/pull/275)) diff --git a/pubspec.yaml b/pubspec.yaml index 7983341f2..1b813f76d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: over_react -version: 3.9.0 +version: 3.10.0 description: A library for building statically-typed React UI components using Dart. homepage: https://github.com/Workiva/over_react/ authors: diff --git a/tools/analyzer_plugin/pubspec.yaml b/tools/analyzer_plugin/pubspec.yaml index c3199e26f..239a25b78 100644 --- a/tools/analyzer_plugin/pubspec.yaml +++ b/tools/analyzer_plugin/pubspec.yaml @@ -12,7 +12,7 @@ dependencies: # Upon release, this should be pinned to the over_react version from ../../pubspec.yaml # so that it always resolves to the same version of over_react that the user has pulled in, # and thus has the same boilerplate parsing code that's running in the builder. - over_react: 3.9.0 + over_react: 3.10.0 meta: ^1.1.6 path: ^1.5.1 source_span: ^1.7.0