utf8proc

annotate Changelog @ 7:fcfd8c836c64

Version 1.1.1

- Added a new PostgreSQL function 'unistrip', which behaves like 'unifold', but also removes all character marks (e.g. accents).
- Changed license from BSD to MIT style.
- Added a new function 'utf8proc_codepoint_valid' to the C library.
- Changed compiler flags in Makefile from -g -O0 to -O2
- The ruby script, which was used to build the utf8proc_data.c file, is now included in the distribution.
author jbe
date Sun Jul 22 12:00:00 2007 +0200 (2007-07-22)
parents d04d3a9b486e
children 6921ee309940
rev   line source
jbe@0 1 Changelog
jbe@0 2
jbe@0 3 2006-06-02:
jbe@0 4 - initial release of version 0.1
jbe@0 5
jbe@1 6 2006-06-05:
jbe@7 7 - changed behaviour of PostgreSQL function to return NULL in case of
jbe@7 8 invalid input, rather than raising an exceptional condition
jbe@7 9 - improved efficiency of PostgreSQL function (no transformation to C string
jbe@7 10 is done)
jbe@0 11
jbe@1 12 2006-06-20:
jbe@1 13 - added -fpic compiler flag in Makefile
jbe@7 14 - fixed bug in the C code for the ruby library (usage of non-existent
jbe@7 15 function)
jbe@1 16
jbe@2 17 Release of version 0.2
jbe@2 18
jbe@2 19 2006-07-18:
jbe@2 20 - changed normalization from NFC to NFKC for postgresql unifold function
jbe@2 21
jbe@2 22 2006-08-04:
jbe@2 23 - added support to mark the beginning of a grapheme cluster with 0xFF
jbe@2 24 (option: CHARBOUND)
jbe@7 25 - added the ruby method String#chars, which is returning an array of UTF-8
jbe@7 26 encoded grapheme clusters
jbe@2 27 - added NLF2LF transformation in postgresql unifold function
jbe@2 28 - added the DECOMPOSE option, if you neither use COMPOSE or DECOMPOSE, no
jbe@2 29 normalization will be performed (different from previous versions)
jbe@2 30 - using integer constants rather than C-strings for character properties
jbe@7 31 - fixed (hopefully) a problem with the ruby library on Mac OS X, which
jbe@7 32 occured when compiler optimization was switched on
jbe@2 33
jbe@2 34 Release of version 0.3
jbe@2 35
jbe@3 36 2006-09-17:
jbe@3 37 - added the LUMP option, which lumps certain characters together
jbe@3 38 (see lump.txt) (also used for the PostgreSQL "unifold" function)
jbe@3 39 - added the STRIPMARK option, which strips marking characters
jbe@3 40 (or marks of composed characters)
jbe@3 41 - deprecated ruby method String#char_ary in favour of String#utf8chars
jbe@3 42
jbe@3 43 Release of version 1.0
jbe@3 44
jbe@5 45 2006-09-20:
jbe@5 46 - included a gem file for the ruby version of the library
jbe@5 47
jbe@5 48 Release of version 1.0.1
jbe@5 49
jbe@5 50 2006-09-21:
jbe@5 51 - included a check in Integer#utf8, which raises an exception, if the given
jbe@5 52 code-point is invalid because of being too high (this was missing yet)
jbe@5 53
jbe@5 54 2006-12-26:
jbe@5 55 - added support for PostgreSQL version 8.2
jbe@5 56
jbe@5 57 Release of version 1.0.2
jbe@6 58
jbe@6 59 2007-03-16:
jbe@6 60 - Fixed a bug in the ruby library, which caused an error, when splitting an
jbe@6 61 empty string at grapheme cluster boundaries (method String#utf8chars).
jbe@6 62
jbe@6 63 Release of version 1.0.3
jbe@6 64
jbe@7 65 2007-06-25:
jbe@7 66 - Added a new PostgreSQL function 'unistrip', which behaves like 'unifold',
jbe@7 67 but also removes all character marks (e.g. accents).
jbe@7 68
jbe@7 69 2007-07-22:
jbe@7 70 - Changed license from BSD to MIT style.
jbe@7 71 - Added a new function 'utf8proc_codepoint_valid' to the C library.
jbe@7 72 - Changed compiler flags in Makefile from -g -O0 to -O2
jbe@7 73 - The ruby script, which was used to build the utf8proc_data.c file, is now
jbe@7 74 included in the distribution.
jbe@7 75
jbe@7 76 Release of version 1.1.1
jbe@7 77

Impressum / About Us