Skip to content

Commit

Permalink
ucd-tools 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rhdunn committed Dec 28, 2016
1 parent cd9cc8e commit 3b8016e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
16 changes: 10 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
# Change Log

## 8.0.0.1 - Tuesday May 31th 2016 \[May 2016\]
## 9.0.0 - 2016-12-28

* Update to Unicode Character Data 9.0.0.

## 8.0.0.1 - 2016-05-31

* Provide a C API in addition to the C++ API.
* Convert the implementation from C++ to C.

## 8.0.0 - Saturday June 6th 2015 \[Jun 2015\]
## 8.0.0 - 2015-06-06

* Update to Unicode Character Data 8.0.0.
* Detect MacOSX `glibtoolize` in `autogen.sh`.
* Use UCD `PropertyValueAliases` instead of the IANA subtag registry for the
script label to ISO 15924 mapping.
* Support enabling the CSUR data via the `--with-csur` configure flag.

## 7.0.0.1 - Saturday July 14th 2014 \[Jul 2014\]
## 7.0.0.1 - 2014-07-14

* Remove the ConScript Unicode Registry data from the Script and Category tables.
* Fix mapping Script values to string.

## 7.0.0 - Saturday June 28th 2014 \[Jun 2014\]
## 7.0.0 - 2014-06-28

* Update to Unicode Character Data 7.0.0.
* Updated the script list to support all ISO 15924 scripts.
* Add a make target for building the documentation.

## 6.3.0 - Wednesday October 16th 2013 \[Oct 2013\]
## 6.3.0 - 2013-10-16

* Update to Unicode Character Data 6.3.0.

## 6.2.0 - Wednesday October 16th 2013 \[Oct 2013\]
## 6.2.0 - 2013-10-16

* Use Unicode Character Data 6.2.0.
* General Category group and value lookup.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ several different sources.

### Unicode Character Database

The following [Unicode Character Database](http://www.unicode.org/Public/7.0.0/ucd/)
The following [Unicode Character Database](http://www.unicode.org/Public/9.0.0/ucd/)
files are supported:

* Blocks
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.65])
AC_INIT([Unicode Character Database Tools], [8.0.0.1], [https://github.com/rhdunn/ucd-tools/issues], [ucd-tools], [https://github.com/rhdunn/ucd-tools])
AC_INIT([Unicode Character Database Tools], [9.0.0], [https://github.com/rhdunn/ucd-tools/issues], [ucd-tools], [https://github.com/rhdunn/ucd-tools])
AM_INIT_AUTOMAKE()

m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])
Expand Down Expand Up @@ -33,10 +33,10 @@ dnl UCD data configuration.
dnl ================================================================

AC_ARG_WITH([unicode-version],
[AS_HELP_STRING([--with-unicode-version], [Unicode version to support @<:@default=8.0.0@:>@])],
[AS_HELP_STRING([--with-unicode-version], [Unicode version to support @<:@default=9.0.0@:>@])],
[AS_IF([test x"$withval" != x],
[UCD_VERSION="$withval"])],
[UCD_VERSION="8.0.0"])
[UCD_VERSION="9.0.0"])

AC_SUBST(UCD_VERSION)

Expand Down

0 comments on commit 3b8016e

Please sign in to comment.