utf8proc

changeset 13:2c7384f1fac1 v1.1.5

Version 1.1.5

(updated Changelog and changed version number)
author jbe
date Fri Oct 16 12:00:00 2009 +0200 (2009-10-16)
parents 82d33620bb8a
children d0bab6ca89a5
files Changelog ruby/gem/utf8proc.gemspec utf8proc.c
line diff
     1.1 --- a/Changelog	Thu Oct 08 12:00:00 2009 +0200
     1.2 +++ b/Changelog	Fri Oct 16 12:00:00 2009 +0200
     1.3 @@ -111,3 +111,18 @@
     1.4  - Minor changes in the README file
     1.5  - Release of version 1.1.4
     1.6  
     1.7 +2009-08-20:
     1.8 +- Use RSTRING_PTR() and RSTRING_LEN() instead of RSTRING()->ptr and
     1.9 +  RSTRING()->len for ruby1.9 compatibility (and #define them, if not
    1.10 +  existent)
    1.11 +
    1.12 +2009-10-02:
    1.13 +- Patches for compatibility with Microsoft Visual Studio
    1.14 +
    1.15 +2009-10-08:
    1.16 +- Fixes to make utf8proc usable in C++ programs
    1.17 +
    1.18 +2009-10-16:
    1.19 +- Release of version 1.1.5
    1.20 +
    1.21 +2009-10-08:
     2.1 --- a/ruby/gem/utf8proc.gemspec	Thu Oct 08 12:00:00 2009 +0200
     2.2 +++ b/ruby/gem/utf8proc.gemspec	Fri Oct 16 12:00:00 2009 +0200
     2.3 @@ -1,7 +1,7 @@
     2.4  require 'rubygems'
     2.5  SPEC = Gem::Specification.new do |s|
     2.6    s.name = 'utf8proc'
     2.7 -  s.version = '1.1.4'
     2.8 +  s.version = '1.1.5'
     2.9    s.author = 'Public Software Group e. V., Berlin, Germany'
    2.10    s.homepage = 'http://www.public-software-group.org/utf8proc'
    2.11    s.summary = 'UTF-8 Unicode string processing'
     3.1 --- a/utf8proc.c	Thu Oct 08 12:00:00 2009 +0200
     3.2 +++ b/utf8proc.c	Fri Oct 16 12:00:00 2009 +0200
     3.3 @@ -96,7 +96,7 @@
     3.4  
     3.5  
     3.6  const char *utf8proc_version(void) {
     3.7 -  return "1.1.3";
     3.8 +  return "1.1.5";
     3.9  }
    3.10  
    3.11  const char *utf8proc_errmsg(ssize_t errcode) {

Impressum / About Us