[FILEUPLOAD-229] included resolved issue in the changelist

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1455870 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 322e5ed..f1800df 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -69,6 +69,7 @@
  * [FILEUPLOAD-212] - Insecure request size checking
  * [FILEUPLOAD-214] - ServletFileUpload only accepts POST requests
  * [FILEUPLOAD-228] - (Servlet|Portlet)RequestContext#contentLength() must return request.getContentLength() if Content-length header is not available
+ * [FILEUPLOAD-229] - toLowerCase() is Locale-dependent; should use toLowerCase(Locale.ENGLISH) instead
 
 Improvement
 =============
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 2fb287e..412100b 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -118,6 +118,9 @@
       <action issue="FILEUPLOAD-228" dev="simonetripodi" type="fix" due-to="Thomas Neidhart">
         (Servlet|Portlet)RequestContext#contentLength() must return request.getContentLength() if Content-length header is not available
       </action>
+      <action issue="FILEUPLOAD-229" dev="simonetripodi" type="fix" due-to="seb">
+        toLowerCase() is Locale-dependent; should use toLowerCase(Locale.ENGLISH) instead
+      </action>
       <!-- Improvement -->
       <action issue="FILEUPLOAD-182" dev="simonetripodi" type="add" due-to="Chris Lott">
         Documentation: add simple HTML form example to fileupload user guide