Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/google_fonts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.3.2

- Makes a map keyed on FontWeight non-const for compatibility with proposed changes to the engine's implementation of FontWeight.

## 6.3.1

- Transfers the package source from
Expand Down
2 changes: 1 addition & 1 deletion packages/google_fonts/lib/src/google_fonts_variant.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const String _italic = 'italic';

/// Mapping from font weight types to the 'weight' part of the Google Fonts API
/// specific filename.
const Map<FontWeight, String> _fontWeightToFilenameWeightParts =
final Map<FontWeight, String> _fontWeightToFilenameWeightParts =
<FontWeight, String>{
FontWeight.w100: 'Thin',
FontWeight.w200: 'ExtraLight',
Expand Down
2 changes: 1 addition & 1 deletion packages/google_fonts/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: google_fonts
description: A Flutter package to use fonts from fonts.google.com. Supports HTTP fetching, caching, and asset bundling.
repository: https://github.com/flutter/packages/tree/main/packages/google_fonts
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_fonts%22
version: 6.3.1
version: 6.3.2

environment:
sdk: ^3.7.0
Expand Down