Repository: commons-text Updated Branches: refs/heads/master 35f62b046 -> 8dde83f91
TEXT-119: Remove mention of SQL escaping from user guide Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/8dde83f9 Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/8dde83f9 Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/8dde83f9 Branch: refs/heads/master Commit: 8dde83f91bf819f75ff893a4f591871f4399b4bc Parents: 35f62b0 Author: Pascal Schumacher <pascalschumac...@gmx.net> Authored: Wed Apr 4 13:16:46 2018 +0200 Committer: Pascal Schumacher <pascalschumac...@gmx.net> Committed: Wed Apr 4 13:16:46 2018 +0200 ---------------------------------------------------------------------- src/changes/changes.xml | 4 ++++ src/site/xdoc/userguide.xml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/8dde83f9/src/changes/changes.xml ---------------------------------------------------------------------- diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 996bcc6..28e04e1 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -45,6 +45,10 @@ The <action> type attribute can be add,update,fix,remove. </properties> <body> + <release version="1.4" date="" description="Release 1.4"> + <action issue="TEXT-119" type="fix" dev="pschumacher">Remove mention of SQL escaping from user guide</action> + </release> + <release version="1.3" date="2018-03-16" description="Release 1.3"> <action issue="TEXT-110" type="add" dev="pschumacher">Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility</action> <action issue="TEXT-70" type="fix" dev="pschumacher">Build failure with java 9-ea+159</action> http://git-wip-us.apache.org/repos/asf/commons-text/blob/8dde83f9/src/site/xdoc/userguide.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/userguide.xml b/src/site/xdoc/userguide.xml index a54fd16..a465d49 100644 --- a/src/site/xdoc/userguide.xml +++ b/src/site/xdoc/userguide.xml @@ -44,7 +44,7 @@ limitations under the License. <p>The Commons Text library provides additions to the standard JDK's text handling. Our goal is to provide a consistent set of tools for processing text generally from computing distances between Strings - to being able to effeciently do String escaping of various types. + to being able to efficiently do String escaping of various types. </p> </section> @@ -71,7 +71,7 @@ limitations under the License. <p>From Lang 3.5, we have moved into Text StringEscapeUtils and StrTokenizer. It's provides ways in which to generate pieces of text, such as might be used for default passwords. StringEscapeUtils contains methods to - escape and unescape Java, JavaScript, HTML, XML and SQL. It is worth noting that + escape and unescape Java, JavaScript, HTML and XML. It is worth noting that the package <code>org.apache.commons.text.translate</code> holds the functionality underpinning the StringEscapeUtils with mappings and translations between such mappings for the sake of doing String escaping. StrTokenizer is