···11# Changelog
2233+## Next
44+- Default to the current year instead of 2020 for year-less date inputs
55+36## 2.14.1 - 2024 Nov 6
47- Fix value bindings not always causing updates (@asdfghjkkl11)
58
+1-1
src/lib/parse.ts
···1919 let missingPunctuation = ''
2020 let valid = true
21212222- baseDate = baseDate || new Date(2020, 0, 1, 0, 0, 0, 0)
2222+ baseDate = baseDate || new Date(new Date().getFullYear(), 0, 1, 0, 0, 0, 0)
2323 let year = baseDate.getFullYear()
2424 let month = baseDate.getMonth()
2525 let day = baseDate.getDate()