# HG changeset patch # User jbe # Date 1255687200 -7200 # Node ID 2c7384f1fac1a1bad3aa614ce51477cb34e89378 # Parent 82d33620bb8aa0411c0f351d6ec8f990d9a5a51c Version 1.1.5 (updated Changelog and changed version number) diff -r 82d33620bb8a -r 2c7384f1fac1 Changelog --- a/Changelog Thu Oct 08 12:00:00 2009 +0200 +++ b/Changelog Fri Oct 16 12:00:00 2009 +0200 @@ -111,3 +111,18 @@ - Minor changes in the README file - Release of version 1.1.4 +2009-08-20: +- Use RSTRING_PTR() and RSTRING_LEN() instead of RSTRING()->ptr and + RSTRING()->len for ruby1.9 compatibility (and #define them, if not + existent) + +2009-10-02: +- Patches for compatibility with Microsoft Visual Studio + +2009-10-08: +- Fixes to make utf8proc usable in C++ programs + +2009-10-16: +- Release of version 1.1.5 + +2009-10-08: diff -r 82d33620bb8a -r 2c7384f1fac1 ruby/gem/utf8proc.gemspec --- a/ruby/gem/utf8proc.gemspec Thu Oct 08 12:00:00 2009 +0200 +++ b/ruby/gem/utf8proc.gemspec Fri Oct 16 12:00:00 2009 +0200 @@ -1,7 +1,7 @@ require 'rubygems' SPEC = Gem::Specification.new do |s| s.name = 'utf8proc' - s.version = '1.1.4' + s.version = '1.1.5' s.author = 'Public Software Group e. V., Berlin, Germany' s.homepage = 'http://www.public-software-group.org/utf8proc' s.summary = 'UTF-8 Unicode string processing' diff -r 82d33620bb8a -r 2c7384f1fac1 utf8proc.c --- a/utf8proc.c Thu Oct 08 12:00:00 2009 +0200 +++ b/utf8proc.c Fri Oct 16 12:00:00 2009 +0200 @@ -96,7 +96,7 @@ const char *utf8proc_version(void) { - return "1.1.3"; + return "1.1.5"; } const char *utf8proc_errmsg(ssize_t errcode) {