diff --git a/RELEASES.md b/RELEASES.md
index ea656d12f4..d4c809e122 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,18 @@
This file is meant as an easy way for us to collate notes and change logs across releases.
-->
+## CommCare 2.65
+
+### Release Notes
+
+#### Important Bug Fixes
+
+- Fixed an issue where the day and year fields of the date widget used by date questions with a `gregorian` appearance could not be edited with the keyboard in landscape.
+
+### QA Notes
+
+- Gregorian Date Widget: set a date in portrait, rotate to landscape, and update it with the keyboard. Tapping the day or the year field should bring up the keyboard's own full-width editor with a DONE key, and the value typed there should apply to the widget once DONE is pressed.
+
## CommCare 2.63.5
### Release Notes
diff --git a/app/res/layout/list_gregorian_widget.xml b/app/res/layout/list_gregorian_widget.xml
index 08b04e69ee..797cfb6d65 100644
--- a/app/res/layout/list_gregorian_widget.xml
+++ b/app/res/layout/list_gregorian_widget.xml
@@ -66,7 +66,7 @@
android:inputType="number"
android:maxLength="2"
android:selectAllOnFocus="true"
- android:imeOptions="flagNoExtractUi"/>
+ android:imeOptions="actionDone"/>