unicode-data – new releases on Hackagehttps://hackage.haskell.org/package/unicode-dataNew releases of package 'unicode-data' on Hackage.http://www.rssboard.org/rss-specificationen[email protected][email protected]Tue, 16 Sep 2025 04:55:33 UTCTue, 16 Sep 2025 04:55:33 UTCrss-feedunicode-data-0.8.0 (Access Unicode Character Database (UCD))https://hackage.haskell.org/package/unicode-data-0.8.0https://hackage.haskell.org/package/unicode-data-0.8.0Tue, 16 Sep 2025 04:55:33 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by wismill at 2025-09-16T04:55:33Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="080-september-2025">0.8.0 (September 2025)</h2>
<ul>
<li>Updated to <a href="https://www.unicode.org/versions/Unicode17.0.0/">Unicode 17.0.0</a>.
</li>
</ul>
<h2 id="070-september-2025">0.7.0 (September 2025)</h2>
<ul>
<li>Updated to <a href="https://www.unicode.org/versions/Unicode16.0.0/">Unicode 16.0.0</a>.
</li>
</ul>
<h2 id="060-july-2024">0.6.0 (July 2024)</h2>
<ul>
<li>Updated to <a href="https://www.unicode.org/versions/Unicode15.1.0/">Unicode 15.1.0</a>.
</li>
<li>Added <code>showCodePoint</code> to <code>Unicode.Char</code>.
</li>
<li>Added <code>intToDigiT</code> to <code>Unicode.Char.Numeric</code>.
</li>
</ul>
<h3 id="removed">Removed</h3>
<ul>
<li>Removed deprecated <code>isLetter</code> and <code>isSpace</code> from <code>Unicode.Char.General</code>.
Use the corresponding functions from <code>Unicode.Char.General.Compat</code> instead.
</li>
<li>Remove deprecated <code>isLower</code> and <code>isUpper</code> from <code>Unicode.Char.Case</code>.
Use the corresponding functions from <code>Unicode.Char.Case.Compat</code> instead.
</li>
<li>Removed deprecated <code>Unicode.Char.Numeric.isNumber</code>.
Use <code>Unicode.Char.Numeric.Compat.isNumber</code> instead.
</li>
</ul>
<h3 id="deprecations">Deprecations</h3>
<ul>
<li><code>Unicode.Char.General.isAlphaNum</code>.
Use <code>Unicode.Char.General.Compat.isAlphaNum</code> instead.
</li>
</ul>
<h2 id="050-july-2024">0.5.0 (July 2024)</h2>
<ul>
<li>Fixed the inlining of <code>Addr#</code> literals and reduce their size. This results in
a sensible decrease of the executable size.
</li>
<li>Changed <code>integerValue</code> from <code>Char -> Maybe Int</code> to <code>(Integral a) => Char -> Maybe a</code>.
</li>
</ul>
<h2 id="0401-december-2022">0.4.0.1 (December 2022)</h2>
<ul>
<li>Fixed <a href="https://github.com/composewell/unicode-data/issues/97">Unicode blocks handling on big-endian architectures</a>.
</li>
</ul>
<h2 id="040-september-2022">0.4.0 (September 2022)</h2>
<ul>
<li>Updated to <a href="https://www.unicode.org/versions/Unicode15.0.0/">Unicode 15.0.0</a>.
</li>
</ul>
<h2 id="031-september-2022">0.3.1 (September 2022)</h2>
<ul>
<li>
<p>Added full case conversions to <code>Unicode.Char.Case</code>:</p>
<ul>
<li>Case folding: <code>caseFoldMapping</code> and <code>toCaseFoldString</code>.
</li>
<li>Lower case: <code>lowerCaseMapping</code> and <code>toLowerString</code>.
</li>
<li>Upper case: <code>upperCaseMapping</code> and <code>toUpperString</code>.
</li>
<li>Title case: <code>titleCaseMapping</code> and <code>toTitleString</code>.
</li>
<li>Stream mechanism: <code>Unfold</code> and <code>Step</code>.
</li>
</ul>
</li>
<li>
<p>Added <code>isNumeric</code>, <code>numericValue</code> and <code>integerValue</code>
to <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.General.Blocks</code>.</p>
</li>
<li>
<p>Add compatibility module:</p>
<ul>
<li><code>Unicode.Char.Numeric.Compat</code>
</li>
</ul>
</li>
</ul>
<h3 id="deprecations-1">Deprecations</h3>
<ul>
<li><code>Unicode.Char.Numeric.isNumber</code>: it will be replaced by <code>isNumeric</code>
in a <em>future</em> version of this package.
Use the function in <code>Unicode.Char.Numeric.Compat</code> instead.
</li>
</ul>
<h2 id="030-december-2021">0.3.0 (December 2021)</h2>
<ul>
<li>
<p>Support for big-endian architectures.</p>
</li>
<li>
<p>Added <code>unicodeVersion</code>.</p>
</li>
<li>
<p>Added <code>GeneralCategory</code> data type and corresponding <code>generalCategoryAbbr</code>,
<code>generalCategory</code> functions.</p>
</li>
<li>
<p>Added the following functions to <code>Unicode.Char.General</code>:
<code>isAlphabetic</code>, <code>isAlphaNum</code>,
<code>isControl</code>, <code>isMark</code>, <code>isPrint</code>, <code>isPunctuation</code>, <code>isSeparator</code>,
<code>isSymbol</code> and <code>isWhiteSpace</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Add compatibility modules:</p>
<ul>
<li><code>Unicode.Char.General.Compat</code>
</li>
<li><code>Unicode.Char.Case.Compat</code>
</li>
</ul>
<p>These modules are compatible with <code>base:Data.Char</code>.</p>
</li>
<li>
<p>Re-export some functions from <code>Data.Char</code> in order to make <code>Unicode.Char</code>
a drop-in replacement in a <em>future</em> version of this package.</p>
</li>
<li>
<p>Drop support for GHC 7.10.3</p>
</li>
</ul>
<h3 id="deprecations-2">Deprecations</h3>
<ul>
<li>
<p>In <code>Unicode.Char.Case</code>:</p>
<ul>
<li><code>isUpper</code>: use <code>isUpperCase</code> instead.
</li>
<li><code>isLower</code>: use <code>isLowerCase</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char.General</code>:</p>
<ul>
<li><code>isLetter</code>: use <code>isAlphabetic</code> instead.
</li>
<li><code>isSpace</code>: use <code>isWhiteSpace</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char</code>: same as hereinabove. These functions will be replaced in a
<em>future</em> release with the functions with the same names from
<code>Unicode.Char.Case.Compat</code> and <code>Unicode.Char.General.Compat</code>.</p>
</li>
</ul>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
wismillunicode-data-0.7.0 (Access Unicode Character Database (UCD))https://hackage.haskell.org/package/unicode-data-0.7.0https://hackage.haskell.org/package/unicode-data-0.7.0Sun, 14 Sep 2025 11:00:57 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by wismill at 2025-09-14T11:00:57Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="070-september-2025">0.7.0 (September 2025)</h2>
<ul>
<li>Updated to <a href="https://www.unicode.org/versions/Unicode16.0.0/">Unicode 16.0.0</a>.
</li>
</ul>
<h2 id="060-july-2024">0.6.0 (July 2024)</h2>
<ul>
<li>Updated to <a href="https://www.unicode.org/versions/Unicode15.1.0/">Unicode 15.1.0</a>.
</li>
<li>Added <code>showCodePoint</code> to <code>Unicode.Char</code>.
</li>
<li>Added <code>intToDigiT</code> to <code>Unicode.Char.Numeric</code>.
</li>
</ul>
<h3 id="removed">Removed</h3>
<ul>
<li>Removed deprecated <code>isLetter</code> and <code>isSpace</code> from <code>Unicode.Char.General</code>.
Use the corresponding functions from <code>Unicode.Char.General.Compat</code> instead.
</li>
<li>Remove deprecated <code>isLower</code> and <code>isUpper</code> from <code>Unicode.Char.Case</code>.
Use the corresponding functions from <code>Unicode.Char.Case.Compat</code> instead.
</li>
<li>Removed deprecated <code>Unicode.Char.Numeric.isNumber</code>.
Use <code>Unicode.Char.Numeric.Compat.isNumber</code> instead.
</li>
</ul>
<h3 id="deprecations">Deprecations</h3>
<ul>
<li><code>Unicode.Char.General.isAlphaNum</code>.
Use <code>Unicode.Char.General.Compat.isAlphaNum</code> instead.
</li>
</ul>
<h2 id="050-july-2024">0.5.0 (July 2024)</h2>
<ul>
<li>Fixed the inlining of <code>Addr#</code> literals and reduce their size. This results in
a sensible decrease of the executable size.
</li>
<li>Changed <code>integerValue</code> from <code>Char -> Maybe Int</code> to <code>(Integral a) => Char -> Maybe a</code>.
</li>
</ul>
<h2 id="0401-december-2022">0.4.0.1 (December 2022)</h2>
<ul>
<li>Fixed <a href="https://github.com/composewell/unicode-data/issues/97">Unicode blocks handling on big-endian architectures</a>.
</li>
</ul>
<h2 id="040-september-2022">0.4.0 (September 2022)</h2>
<ul>
<li>Updated to <a href="https://www.unicode.org/versions/Unicode15.0.0/">Unicode 15.0.0</a>.
</li>
</ul>
<h2 id="031-september-2022">0.3.1 (September 2022)</h2>
<ul>
<li>
<p>Added full case conversions to <code>Unicode.Char.Case</code>:</p>
<ul>
<li>Case folding: <code>caseFoldMapping</code> and <code>toCaseFoldString</code>.
</li>
<li>Lower case: <code>lowerCaseMapping</code> and <code>toLowerString</code>.
</li>
<li>Upper case: <code>upperCaseMapping</code> and <code>toUpperString</code>.
</li>
<li>Title case: <code>titleCaseMapping</code> and <code>toTitleString</code>.
</li>
<li>Stream mechanism: <code>Unfold</code> and <code>Step</code>.
</li>
</ul>
</li>
<li>
<p>Added <code>isNumeric</code>, <code>numericValue</code> and <code>integerValue</code>
to <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.General.Blocks</code>.</p>
</li>
<li>
<p>Add compatibility module:</p>
<ul>
<li><code>Unicode.Char.Numeric.Compat</code>
</li>
</ul>
</li>
</ul>
<h3 id="deprecations-1">Deprecations</h3>
<ul>
<li><code>Unicode.Char.Numeric.isNumber</code>: it will be replaced by <code>isNumeric</code>
in a <em>future</em> version of this package.
Use the function in <code>Unicode.Char.Numeric.Compat</code> instead.
</li>
</ul>
<h2 id="030-december-2021">0.3.0 (December 2021)</h2>
<ul>
<li>
<p>Support for big-endian architectures.</p>
</li>
<li>
<p>Added <code>unicodeVersion</code>.</p>
</li>
<li>
<p>Added <code>GeneralCategory</code> data type and corresponding <code>generalCategoryAbbr</code>,
<code>generalCategory</code> functions.</p>
</li>
<li>
<p>Added the following functions to <code>Unicode.Char.General</code>:
<code>isAlphabetic</code>, <code>isAlphaNum</code>,
<code>isControl</code>, <code>isMark</code>, <code>isPrint</code>, <code>isPunctuation</code>, <code>isSeparator</code>,
<code>isSymbol</code> and <code>isWhiteSpace</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Add compatibility modules:</p>
<ul>
<li><code>Unicode.Char.General.Compat</code>
</li>
<li><code>Unicode.Char.Case.Compat</code>
</li>
</ul>
<p>These modules are compatible with <code>base:Data.Char</code>.</p>
</li>
<li>
<p>Re-export some functions from <code>Data.Char</code> in order to make <code>Unicode.Char</code>
a drop-in replacement in a <em>future</em> version of this package.</p>
</li>
<li>
<p>Drop support for GHC 7.10.3</p>
</li>
</ul>
<h3 id="deprecations-2">Deprecations</h3>
<ul>
<li>
<p>In <code>Unicode.Char.Case</code>:</p>
<ul>
<li><code>isUpper</code>: use <code>isUpperCase</code> instead.
</li>
<li><code>isLower</code>: use <code>isLowerCase</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char.General</code>:</p>
<ul>
<li><code>isLetter</code>: use <code>isAlphabetic</code> instead.
</li>
<li><code>isSpace</code>: use <code>isWhiteSpace</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char</code>: same as hereinabove. These functions will be replaced in a
<em>future</em> release with the functions with the same names from
<code>Unicode.Char.Case.Compat</code> and <code>Unicode.Char.General.Compat</code>.</p>
</li>
</ul>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
wismillunicode-data-0.6.0 (Access Unicode Character Database (UCD))https://hackage.haskell.org/package/unicode-data-0.6.0https://hackage.haskell.org/package/unicode-data-0.6.0Wed, 3 Jul 2024 14:37:14 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by wismill at 2024-07-03T14:37:14Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="060-july-2024">0.6.0 (July 2024)</h2>
<ul>
<li>Updated to <a href="https://www.unicode.org/versions/Unicode15.1.0/">Unicode 15.1.0</a>.
</li>
<li>Added <code>showCodePoint</code> to <code>Unicode.Char</code>.
</li>
<li>Added <code>intToDigiT</code> to <code>Unicode.Char.Numeric</code>.
</li>
</ul>
<h3 id="removed">Removed</h3>
<ul>
<li>Removed deprecated <code>isLetter</code> and <code>isSpace</code> from <code>Unicode.Char.General</code>.
Use the corresponding functions from <code>Unicode.Char.General.Compat</code> instead.
</li>
<li>Remove deprecated <code>isLower</code> and <code>isUpper</code> from <code>Unicode.Char.Case</code>.
Use the corresponding functions from <code>Unicode.Char.Case.Compat</code> instead.
</li>
<li>Removed deprecated <code>Unicode.Char.Numeric.isNumber</code>.
Use <code>Unicode.Char.Numeric.Compat.isNumber</code> instead.
</li>
</ul>
<h3 id="deprecations">Deprecations</h3>
<ul>
<li><code>Unicode.Char.General.isAlphaNum</code>.
Use <code>Unicode.Char.General.Compat.isAlphaNum</code> instead.
</li>
</ul>
<h2 id="050-july-2024">0.5.0 (July 2024)</h2>
<ul>
<li>Fix the inlining of <code>Addr#</code> literals and reduce their size. This results in
a sensible decrease of the executable size.
</li>
<li>Changed <code>integerValue</code> from <code>Char -> Maybe Int</code> to <code>(Integral a) => Char -> Maybe a</code>.
</li>
</ul>
<h2 id="0401-december-2022">0.4.0.1 (December 2022)</h2>
<ul>
<li>Fix <a href="https://github.com/composewell/unicode-data/issues/97">Unicode blocks handling on big-endian architectures</a>.
</li>
</ul>
<h2 id="040-september-2022">0.4.0 (September 2022)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode15.0.0/">Unicode 15.0.0</a>.
</li>
</ul>
<h2 id="031-september-2022">0.3.1 (September 2022)</h2>
<ul>
<li>
<p>Added full case conversions to <code>Unicode.Char.Case</code>:</p>
<ul>
<li>Case folding: <code>caseFoldMapping</code> and <code>toCaseFoldString</code>.
</li>
<li>Lower case: <code>lowerCaseMapping</code> and <code>toLowerString</code>.
</li>
<li>Upper case: <code>upperCaseMapping</code> and <code>toUpperString</code>.
</li>
<li>Title case: <code>titleCaseMapping</code> and <code>toTitleString</code>.
</li>
<li>Stream mechanism: <code>Unfold</code> and <code>Step</code>.
</li>
</ul>
</li>
<li>
<p>Added <code>isNumeric</code>, <code>numericValue</code> and <code>integerValue</code>
to <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.General.Blocks</code>.</p>
</li>
<li>
<p>Add compatibility module:</p>
<ul>
<li><code>Unicode.Char.Numeric.Compat</code>
</li>
</ul>
</li>
</ul>
<h3 id="deprecations-1">Deprecations</h3>
<ul>
<li><code>Unicode.Char.Numeric.isNumber</code>: it will be replaced by <code>isNumeric</code>
in a <em>future</em> version of this package.
Use the function in <code>Unicode.Char.Numeric.Compat</code> instead.
</li>
</ul>
<h2 id="030-december-2021">0.3.0 (December 2021)</h2>
<ul>
<li>
<p>Support for big-endian architectures.</p>
</li>
<li>
<p>Added <code>unicodeVersion</code>.</p>
</li>
<li>
<p>Added <code>GeneralCategory</code> data type and corresponding <code>generalCategoryAbbr</code>,
<code>generalCategory</code> functions.</p>
</li>
<li>
<p>Added the following functions to <code>Unicode.Char.General</code>:
<code>isAlphabetic</code>, <code>isAlphaNum</code>,
<code>isControl</code>, <code>isMark</code>, <code>isPrint</code>, <code>isPunctuation</code>, <code>isSeparator</code>,
<code>isSymbol</code> and <code>isWhiteSpace</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Add compatibility modules:</p>
<ul>
<li><code>Unicode.Char.General.Compat</code>
</li>
<li><code>Unicode.Char.Case.Compat</code>
</li>
</ul>
<p>These modules are compatible with <code>base:Data.Char</code>.</p>
</li>
<li>
<p>Re-export some functions from <code>Data.Char</code> in order to make <code>Unicode.Char</code>
a drop-in replacement in a <em>future</em> version of this package.</p>
</li>
<li>
<p>Drop support for GHC 7.10.3</p>
</li>
</ul>
<h3 id="deprecations-2">Deprecations</h3>
<ul>
<li>
<p>In <code>Unicode.Char.Case</code>:</p>
<ul>
<li><code>isUpper</code>: use <code>isUpperCase</code> instead.
</li>
<li><code>isLower</code>: use <code>isLowerCase</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char.General</code>:</p>
<ul>
<li><code>isLetter</code>: use <code>isAlphabetic</code> instead.
</li>
<li><code>isSpace</code>: use <code>isWhiteSpace</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char</code>: same as hereinabove. These functions will be replaced in a
<em>future</em> release with the functions with the same names from
<code>Unicode.Char.Case.Compat</code> and <code>Unicode.Char.General.Compat</code>.</p>
</li>
</ul>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
wismillunicode-data-0.5.0 (Access Unicode Character Database (UCD))https://hackage.haskell.org/package/unicode-data-0.5.0https://hackage.haskell.org/package/unicode-data-0.5.0Tue, 2 Jul 2024 09:45:43 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by wismill at 2024-07-02T09:45:43Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="050-july-2024">0.5.0 (July 2024)</h2>
<ul>
<li>Fix the inlining of <code>Addr#</code> literals and reduce their size. This results in
a sensible decrease of the executable size.
</li>
<li>Changed <code>integerValue</code> from <code>Char -> Maybe Int</code> to <code>(Integral a) => Char -> Maybe a</code>.
</li>
</ul>
<h2 id="0401-december-2022">0.4.0.1 (December 2022)</h2>
<ul>
<li>Fix <a href="https://github.com/composewell/unicode-data/issues/97">Unicode blocks handling on big-endian architectures</a>.
</li>
</ul>
<h2 id="040-september-2022">0.4.0 (September 2022)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode15.0.0/">Unicode 15.0.0</a>.
</li>
</ul>
<h2 id="031-september-2022">0.3.1 (September 2022)</h2>
<ul>
<li>
<p>Added full case conversions to <code>Unicode.Char.Case</code>:</p>
<ul>
<li>Case folding: <code>caseFoldMapping</code> and <code>toCaseFoldString</code>.
</li>
<li>Lower case: <code>lowerCaseMapping</code> and <code>toLowerString</code>.
</li>
<li>Upper case: <code>upperCaseMapping</code> and <code>toUpperString</code>.
</li>
<li>Title case: <code>titleCaseMapping</code> and <code>toTitleString</code>.
</li>
<li>Stream mechanism: <code>Unfold</code> and <code>Step</code>.
</li>
</ul>
</li>
<li>
<p>Added <code>isNumeric</code>, <code>numericValue</code> and <code>integerValue</code>
to <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.General.Blocks</code>.</p>
</li>
<li>
<p>Add compatibility module:</p>
<ul>
<li><code>Unicode.Char.Numeric.Compat</code>
</li>
</ul>
</li>
</ul>
<h3 id="deprecations">Deprecations</h3>
<ul>
<li><code>Unicode.Char.Numeric.isNumber</code>: it will be replaced by <code>isNumeric</code>
in a <em>future</em> version of this package.
Use the function in <code>Unicode.Char.Numeric.Compat</code> instead.
</li>
</ul>
<h2 id="030-december-2021">0.3.0 (December 2021)</h2>
<ul>
<li>
<p>Support for big-endian architectures.</p>
</li>
<li>
<p>Added <code>unicodeVersion</code>.</p>
</li>
<li>
<p>Added <code>GeneralCategory</code> data type and corresponding <code>generalCategoryAbbr</code>,
<code>generalCategory</code> functions.</p>
</li>
<li>
<p>Added the following functions to <code>Unicode.Char.General</code>:
<code>isAlphabetic</code>, <code>isAlphaNum</code>,
<code>isControl</code>, <code>isMark</code>, <code>isPrint</code>, <code>isPunctuation</code>, <code>isSeparator</code>,
<code>isSymbol</code> and <code>isWhiteSpace</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Add compatibility modules:</p>
<ul>
<li><code>Unicode.Char.General.Compat</code>
</li>
<li><code>Unicode.Char.Case.Compat</code>
</li>
</ul>
<p>These modules are compatible with <code>base:Data.Char</code>.</p>
</li>
<li>
<p>Re-export some functions from <code>Data.Char</code> in order to make <code>Unicode.Char</code>
a drop-in replacement in a <em>future</em> version of this package.</p>
</li>
<li>
<p>Drop support for GHC 7.10.3</p>
</li>
</ul>
<h3 id="deprecations-1">Deprecations</h3>
<ul>
<li>
<p>In <code>Unicode.Char.Case</code>:</p>
<ul>
<li><code>isUpper</code>: use <code>isUpperCase</code> instead.
</li>
<li><code>isLower</code>: use <code>isLowerCase</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char.General</code>:</p>
<ul>
<li><code>isLetter</code>: use <code>isAlphabetic</code> instead.
</li>
<li><code>isSpace</code>: use <code>isWhiteSpace</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char</code>: same as hereinabove. These functions will be replaced in a
<em>future</em> release with the functions with the same names from
<code>Unicode.Char.Case.Compat</code> and <code>Unicode.Char.General.Compat</code>.</p>
</li>
</ul>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
wismillunicode-data-0.4.0.1 (Access Unicode Character Database (UCD))https://hackage.haskell.org/package/unicode-data-0.4.0.1https://hackage.haskell.org/package/unicode-data-0.4.0.1Sat, 17 Dec 2022 21:27:17 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by wismill at 2022-12-17T21:27:17Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="0401-december-2022">0.4.0.1 (December 2022)</h2>
<ul>
<li>Fix <a href="https://github.com/composewell/unicode-data/issues/97">Unicode blocks handling on big-endian architectures</a>.
</li>
</ul>
<h2 id="040-september-2022">0.4.0 (September 2022)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode15.0.0/">Unicode 15.0.0</a>.
</li>
</ul>
<h2 id="031-september-2022">0.3.1 (September 2022)</h2>
<ul>
<li>
<p>Added full case conversions to <code>Unicode.Char.Case</code>:</p>
<ul>
<li>Case folding: <code>caseFoldMapping</code> and <code>toCaseFoldString</code>.
</li>
<li>Lower case: <code>lowerCaseMapping</code> and <code>toLowerString</code>.
</li>
<li>Upper case: <code>upperCaseMapping</code> and <code>toUpperString</code>.
</li>
<li>Title case: <code>titleCaseMapping</code> and <code>toTitleString</code>.
</li>
<li>Stream mechanism: <code>Unfold</code> and <code>Step</code>.
</li>
</ul>
</li>
<li>
<p>Added <code>isNumeric</code>, <code>numericValue</code> and <code>integerValue</code>
to <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.General.Blocks</code>.</p>
</li>
<li>
<p>Add compatibility module:</p>
<ul>
<li><code>Unicode.Char.Numeric.Compat</code>
</li>
</ul>
</li>
</ul>
<h3 id="deprecations">Deprecations</h3>
<ul>
<li><code>Unicode.Char.Numeric.isNumber</code>: it will be replaced by <code>isNumeric</code>
in a <em>future</em> version of this package.
Use the function in <code>Unicode.Char.Numeric.Compat</code> instead.
</li>
</ul>
<h2 id="030-december-2021">0.3.0 (December 2021)</h2>
<ul>
<li>
<p>Support for big-endian architectures.</p>
</li>
<li>
<p>Added <code>unicodeVersion</code>.</p>
</li>
<li>
<p>Added <code>GeneralCategory</code> data type and corresponding <code>generalCategoryAbbr</code>,
<code>generalCategory</code> functions.</p>
</li>
<li>
<p>Added the following functions to <code>Unicode.Char.General</code>:
<code>isAlphabetic</code>, <code>isAlphaNum</code>,
<code>isControl</code>, <code>isMark</code>, <code>isPrint</code>, <code>isPunctuation</code>, <code>isSeparator</code>,
<code>isSymbol</code> and <code>isWhiteSpace</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Add compatibility modules:</p>
<ul>
<li><code>Unicode.Char.General.Compat</code>
</li>
<li><code>Unicode.Char.Case.Compat</code>
</li>
</ul>
<p>These modules are compatible with <code>base:Data.Char</code>.</p>
</li>
<li>
<p>Re-export some functions from <code>Data.Char</code> in order to make <code>Unicode.Char</code>
a drop-in replacement in a <em>future</em> version of this package.</p>
</li>
<li>
<p>Drop support for GHC 7.10.3</p>
</li>
</ul>
<h3 id="deprecations-1">Deprecations</h3>
<ul>
<li>
<p>In <code>Unicode.Char.Case</code>:</p>
<ul>
<li><code>isUpper</code>: use <code>isUpperCase</code> instead.
</li>
<li><code>isLower</code>: use <code>isLowerCase</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char.General</code>:</p>
<ul>
<li><code>isLetter</code>: use <code>isAlphabetic</code> instead.
</li>
<li><code>isSpace</code>: use <code>isWhiteSpace</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char</code>: same as hereinabove. These functions will be replaced in a
<em>future</em> release with the functions with the same names from
<code>Unicode.Char.Case.Compat</code> and <code>Unicode.Char.General.Compat</code>.</p>
</li>
</ul>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
wismillunicode-data-0.4.0 (Access Unicode Character Database (UCD))https://hackage.haskell.org/package/unicode-data-0.4.0https://hackage.haskell.org/package/unicode-data-0.4.0Thu, 13 Oct 2022 04:50:52 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by wismill at 2022-10-13T04:50:52Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="040-september-2022">0.4.0 (September 2022)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode15.0.0/">Unicode 15.0.0</a>.
</li>
</ul>
<h2 id="031-september-2022">0.3.1 (September 2022)</h2>
<ul>
<li>
<p>Added full case conversions to <code>Unicode.Char.Case</code>:</p>
<ul>
<li>Case folding: <code>caseFoldMapping</code> and <code>toCaseFoldString</code>.
</li>
<li>Lower case: <code>lowerCaseMapping</code> and <code>toLowerString</code>.
</li>
<li>Upper case: <code>upperCaseMapping</code> and <code>toUpperString</code>.
</li>
<li>Title case: <code>titleCaseMapping</code> and <code>toTitleString</code>.
</li>
<li>Stream mechanism: <code>Unfold</code> and <code>Step</code>.
</li>
</ul>
</li>
<li>
<p>Added <code>isNumeric</code>, <code>numericValue</code> and <code>integerValue</code>
to <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.General.Blocks</code>.</p>
</li>
<li>
<p>Add compatibility module:</p>
<ul>
<li><code>Unicode.Char.Numeric.Compat</code>
</li>
</ul>
</li>
</ul>
<h3 id="deprecations">Deprecations</h3>
<ul>
<li><code>Unicode.Char.Numeric.isNumber</code>: it will be replaced by <code>isNumeric</code>
in a <em>future</em> version of this package.
Use the function in <code>Unicode.Char.Numeric.Compat</code> instead.
</li>
</ul>
<h2 id="030-december-2021">0.3.0 (December 2021)</h2>
<ul>
<li>
<p>Support for big-endian architectures.</p>
</li>
<li>
<p>Added <code>unicodeVersion</code>.</p>
</li>
<li>
<p>Added <code>GeneralCategory</code> data type and corresponding <code>generalCategoryAbbr</code>,
<code>generalCategory</code> functions.</p>
</li>
<li>
<p>Added the following functions to <code>Unicode.Char.General</code>:
<code>isAlphabetic</code>, <code>isAlphaNum</code>,
<code>isControl</code>, <code>isMark</code>, <code>isPrint</code>, <code>isPunctuation</code>, <code>isSeparator</code>,
<code>isSymbol</code> and <code>isWhiteSpace</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Add compatibility modules:</p>
<ul>
<li><code>Unicode.Char.General.Compat</code>
</li>
<li><code>Unicode.Char.Case.Compat</code>
</li>
</ul>
<p>These modules are compatible with <code>base:Data.Char</code>.</p>
</li>
<li>
<p>Re-export some functions from <code>Data.Char</code> in order to make <code>Unicode.Char</code>
a drop-in replacement in a <em>future</em> version of this package.</p>
</li>
<li>
<p>Drop support for GHC 7.10.3</p>
</li>
</ul>
<h3 id="deprecations-1">Deprecations</h3>
<ul>
<li>
<p>In <code>Unicode.Char.Case</code>:</p>
<ul>
<li><code>isUpper</code>: use <code>isUpperCase</code> instead.
</li>
<li><code>isLower</code>: use <code>isLowerCase</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char.General</code>:</p>
<ul>
<li><code>isLetter</code>: use <code>isAlphabetic</code> instead.
</li>
<li><code>isSpace</code>: use <code>isWhiteSpace</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char</code>: same as hereinabove. These functions will be replaced in a
<em>future</em> release with the functions with the same names from
<code>Unicode.Char.Case.Compat</code> and <code>Unicode.Char.General.Compat</code>.</p>
</li>
</ul>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
wismillunicode-data-0.3.1 (Access Unicode Character Database (UCD))https://hackage.haskell.org/package/unicode-data-0.3.1https://hackage.haskell.org/package/unicode-data-0.3.1Wed, 28 Sep 2022 08:42:19 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by wismill at 2022-09-28T08:42:19Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="031-september-2022">0.3.1 (September 2022)</h2>
<ul>
<li>
<p>Added full case conversions to <code>Unicode.Char.Case</code>:</p>
<ul>
<li>Case folding: <code>caseFoldMapping</code> and <code>toCaseFoldString</code>.
</li>
<li>Lower case: <code>lowerCaseMapping</code> and <code>toLowerString</code>.
</li>
<li>Upper case: <code>upperCaseMapping</code> and <code>toUpperString</code>.
</li>
<li>Title case: <code>titleCaseMapping</code> and <code>toTitleString</code>.
</li>
<li>Stream mechanism: <code>Unfold</code> and <code>Step</code>.
</li>
</ul>
</li>
<li>
<p>Added <code>isNumeric</code>, <code>numericValue</code> and <code>integerValue</code>
to <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.General.Blocks</code>.</p>
</li>
<li>
<p>Add compatibility module:</p>
<ul>
<li><code>Unicode.Char.Numeric.Compat</code>
</li>
</ul>
</li>
</ul>
<h3 id="deprecations">Deprecations</h3>
<ul>
<li><code>Unicode.Char.Numeric.isNumber</code>: it will be replaced by <code>isNumeric</code>
in a <em>future</em> version of this package.
Use the function in <code>Unicode.Char.Numeric.Compat</code> instead.
</li>
</ul>
<h2 id="030-december-2021">0.3.0 (December 2021)</h2>
<ul>
<li>
<p>Support for big-endian architectures.</p>
</li>
<li>
<p>Added <code>unicodeVersion</code>.</p>
</li>
<li>
<p>Added <code>GeneralCategory</code> data type and corresponding <code>generalCategoryAbbr</code>,
<code>generalCategory</code> functions.</p>
</li>
<li>
<p>Added the following functions to <code>Unicode.Char.General</code>:
<code>isAlphabetic</code>, <code>isAlphaNum</code>,
<code>isControl</code>, <code>isMark</code>, <code>isPrint</code>, <code>isPunctuation</code>, <code>isSeparator</code>,
<code>isSymbol</code> and <code>isWhiteSpace</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Add compatibility modules:</p>
<ul>
<li><code>Unicode.Char.General.Compat</code>
</li>
<li><code>Unicode.Char.Case.Compat</code>
</li>
</ul>
<p>These modules are compatible with <code>base:Data.Char</code>.</p>
</li>
<li>
<p>Re-export some functions from <code>Data.Char</code> in order to make <code>Unicode.Char</code>
a drop-in replacement in a <em>future</em> version of this package.</p>
</li>
<li>
<p>Drop support for GHC 7.10.3</p>
</li>
</ul>
<h3 id="deprecations-1">Deprecations</h3>
<ul>
<li>
<p>In <code>Unicode.Char.Case</code>:</p>
<ul>
<li><code>isUpper</code>: use <code>isUpperCase</code> instead.
</li>
<li><code>isLower</code>: use <code>isLowerCase</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char.General</code>:</p>
<ul>
<li><code>isLetter</code>: use <code>isAlphabetic</code> instead.
</li>
<li><code>isSpace</code>: use <code>isWhiteSpace</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char</code>: same as hereinabove. These functions will be replaced in a
<em>future</em> release with the functions with the same names from
<code>Unicode.Char.Case.Compat</code> and <code>Unicode.Char.General.Compat</code>.</p>
</li>
</ul>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
wismillunicode-data-0.3.0 (Access Unicode character database)https://hackage.haskell.org/package/unicode-data-0.3.0https://hackage.haskell.org/package/unicode-data-0.3.0Fri, 31 Dec 2021 10:57:21 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by wismill at 2021-12-31T10:57:21Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="030-december-2021">0.3.0 (December 2021)</h2>
<ul>
<li>
<p>Support for big-endian architectures.</p>
</li>
<li>
<p>Added <code>unicodeVersion</code>.</p>
</li>
<li>
<p>Added <code>GeneralCategory</code> data type and corresponding <code>generalCategoryAbbr</code>,
<code>generalCategory</code> functions.</p>
</li>
<li>
<p>Added the following functions to <code>Unicode.Char.General</code>:
<code>isAlphabetic</code>, <code>isAlphaNum</code>,
<code>isControl</code>, <code>isMark</code>, <code>isPrint</code>, <code>isPunctuation</code>, <code>isSeparator</code>,
<code>isSymbol</code> and <code>isWhiteSpace</code>.</p>
</li>
<li>
<p>Added the module <code>Unicode.Char.Numeric</code>.</p>
</li>
<li>
<p>Add compatibility modules:</p>
<ul>
<li><code>Unicode.Char.General.Compat</code>
</li>
<li><code>Unicode.Char.Case.Compat</code>
</li>
</ul>
<p>These modules are compatible with <code>base:Data.Char</code>.</p>
</li>
<li>
<p>Re-export some functions from <code>Data.Char</code> in order to make <code>Unicode.Char</code>
a drop-in replacement in a <em>future</em> version of this package.</p>
</li>
<li>
<p>Drop support for GHC 7.10.3</p>
</li>
</ul>
<h3 id="deprecations">Deprecations</h3>
<ul>
<li>
<p>In <code>Unicode.Char.Case</code>:</p>
<ul>
<li><code>isUpper</code>: use <code>isUpperCase</code> instead.
</li>
<li><code>isLower</code>: use <code>isLowerCase</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char.General</code>:</p>
<ul>
<li><code>isLetter</code>: use <code>isAlphabetic</code> instead.
</li>
<li><code>isSpace</code>: use <code>isWhiteSpace</code> instead.
</li>
</ul>
</li>
<li>
<p>In <code>Unicode.Char</code>: same as hereinabove. These functions will be replaced in a
<em>future</em> release with the functions with the same names from
<code>Unicode.Char.Case.Compat</code> and <code>Unicode.Char.General.Compat</code>.</p>
</li>
</ul>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
wismillunicode-data-0.2.0 (Access Unicode character database)https://hackage.haskell.org/package/unicode-data-0.2.0https://hackage.haskell.org/package/unicode-data-0.2.0Thu, 18 Nov 2021 21:09:14 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by harendra at 2021-11-18T21:09:14Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="020-november-2021">0.2.0 (November 2021)</h2>
<ul>
<li>Update to <a href="https://www.unicode.org/versions/Unicode14.0.0/">Unicode 14.0.0</a>.
</li>
<li>Add <code>Unicode.Char.Identifiers</code> supporting Unicode Identifier and Pattern
Syntax.
</li>
</ul>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
harendraunicode-data-0.1.0.1 (Access Unicode character database)https://hackage.haskell.org/package/unicode-data-0.1.0.1https://hackage.haskell.org/package/unicode-data-0.1.0.1Thu, 8 Jul 2021 21:51:58 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by harendra at 2021-07-08T21:51:58Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="0101-jul-2021">0.1.0.1 (Jul 2021)</h2>
<ul>
<li>Workaround to avoid incorrect display of dependencies on Hackage by moving
build-depends of ucd2haskell executable under a build flag conditional.
</li>
</ul>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
harendraunicode-data-0.1.0 (Access Unicode character database)https://hackage.haskell.org/package/unicode-data-0.1.0https://hackage.haskell.org/package/unicode-data-0.1.0Thu, 8 Jul 2021 21:13:24 UTC<dl><dt>Homepage</dt><dd><a href="http://github.com/composewell/unicode-data">http://github.com/composewell/unicode-data</a></dd><dt>Author</dt><dd>Composewell Technologies and Contributors</dd><dt>Uploaded</dt><dd>by harendra at 2021-07-08T21:13:24Z</dd><dt>Maintainer</dt><dd>[email protected]</dd></dl><hr /><h1 id="changelog">Changelog</h1>
<h2 id="010-jul-2021">0.1.0 (Jul 2021)</h2>
<ul>
<li>Initial release
</li>
</ul>
harendra