Skip to content

Commit

Permalink
fix: typo in month abbreviation (#370)
Browse files Browse the repository at this point in the history
Co-authored-by: GroovinChip <[email protected]>
  • Loading branch information
rklos and GroovinChip authored Mar 2, 2023
1 parent 35d26a8 commit e7cc55c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [1.12.1+1]
* Fixed a typo in the December abbreviation displayed in the `MacosDatePicker`.

## [1.12.1]
* Fix SidebarItem's leading icons not respecting the theme's primary color

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.12.1"
version: "1.12.1+1"
matcher:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ String intToMonthAbbr(int month) {
case 11:
return 'Nov';
case 12:
return 'Dev';
return 'Dec';
default:
throw Exception('Unsupported value');
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: macos_ui
description: Flutter widgets and themes implementing the current macOS design language.
version: 1.12.1
version: 1.12.1+1
homepage: "https://macosui.dev"
repository: "https://github.com/GroovinChip/macos_ui"

Expand Down

0 comments on commit e7cc55c

Please sign in to comment.