Skip to content

Commit e7cc55c

Browse files
rklosGroovinChip
andauthored
fix: typo in month abbreviation (#370)
Co-authored-by: GroovinChip <[email protected]>
1 parent 35d26a8 commit e7cc55c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [1.12.1+1]
2+
* Fixed a typo in the December abbreviation displayed in the `MacosDatePicker`.
3+
14
## [1.12.1]
25
* Fix SidebarItem's leading icons not respecting the theme's primary color
36

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ packages:
9797
path: ".."
9898
relative: true
9999
source: path
100-
version: "1.12.1"
100+
version: "1.12.1+1"
101101
matcher:
102102
dependency: transitive
103103
description:

lib/src/utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ String intToMonthAbbr(int month) {
8282
case 11:
8383
return 'Nov';
8484
case 12:
85-
return 'Dev';
85+
return 'Dec';
8686
default:
8787
throw Exception('Unsupported value');
8888
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: macos_ui
22
description: Flutter widgets and themes implementing the current macOS design language.
3-
version: 1.12.1
3+
version: 1.12.1+1
44
homepage: "https://macosui.dev"
55
repository: "https://github.com/GroovinChip/macos_ui"
66

0 commit comments

Comments
 (0)