diff --git a/charts_common/CHANGELOG.md b/charts_common/CHANGELOG.md index 94bce64a4..89f2e151e 100644 --- a/charts_common/CHANGELOG.md +++ b/charts_common/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.11.0 +* Null support +* Update to latest from internal repo + +# 0.10.0 +* Internal bug fixes +* Bump versions of intl due to pull request + # 0.9.0 * Internal bug fixes * Bump versions in Gemlock file due to security alerts diff --git a/charts_common/pubspec.yaml b/charts_common/pubspec.yaml index 396a1eb90..00415c2f6 100644 --- a/charts_common/pubspec.yaml +++ b/charts_common/pubspec.yaml @@ -1,5 +1,5 @@ name: charts_common -version: 0.9.1 +version: 0.11.0 description: A common library for charting packages. author: Charts Team homepage: https://github.com/google/charts diff --git a/charts_flutter/CHANGELOG.md b/charts_flutter/CHANGELOG.md index 466a69083..9de9e12c4 100644 --- a/charts_flutter/CHANGELOG.md +++ b/charts_flutter/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.11.0 +* Null support +* Update to latest from internal repo + +# 0.10.0 +* Internal bug fixes +* Bump versions of intl due to pull request + # 0.9.0 * Internal bug fixes * Bump versions in Gemlock file due to security alerts diff --git a/charts_flutter/lib/src/behaviors/legend/legend_entry_layout.dart b/charts_flutter/lib/src/behaviors/legend/legend_entry_layout.dart index 5230c4986..fe6e791b7 100644 --- a/charts_flutter/lib/src/behaviors/legend/legend_entry_layout.dart +++ b/charts_flutter/lib/src/behaviors/legend/legend_entry_layout.dart @@ -131,7 +131,7 @@ class SimpleLegendEntryLayout implements LegendEntryLayout { : null; if (isHidden) { // Use a default color for hidden legend entries if none is provided. - color ??= Theme.of(context).textTheme.body1!.color; + color ??= Theme.of(context).textTheme.bodyText2!.color; color = color!.withOpacity(0.26); } diff --git a/charts_flutter/pubspec.yaml b/charts_flutter/pubspec.yaml index fcb0dc001..7405d2603 100644 --- a/charts_flutter/pubspec.yaml +++ b/charts_flutter/pubspec.yaml @@ -1,5 +1,5 @@ name: charts_flutter -version: 0.9.1 +version: 0.11.0 description: Material Design charting library for flutter. author: Charts Team homepage: https://github.com/google/charts @@ -13,9 +13,9 @@ dependencies: # # The pub version of charts_flutter will point to the pub version of charts_common. # The latest pub version is commented out and shown below as an example. - # charts_common: 0.9.1 - charts_common: - path: ../charts_common/ + charts_common: 0.11.0 + # charts_common: + # path: ../charts_common/ collection: ^1.14.5 flutter: sdk: flutter diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index 533245680..b83da1e33 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -6,8 +6,8 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) - addressable (2.6.0) - public_suffix (>= 2.0.2, < 4.0) + addressable (2.8.0) + public_suffix (>= 2.0.2, < 5.0) coffee-script (2.4.1) coffee-script-source execjs