# HG changeset patch # User jbe # Date 1385550000 -3600 # Node ID d0bab6ca89a535a43645d6b58e7da121f30d0027 # Parent 2c7384f1fac1a1bad3aa614ce51477cb34e89378 Version 1.1.6 - PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name) diff -r 2c7384f1fac1 -r d0bab6ca89a5 Changelog --- a/Changelog Fri Oct 16 12:00:00 2009 +0200 +++ b/Changelog Wed Nov 27 12:00:00 2013 +0100 @@ -125,4 +125,7 @@ 2009-10-16: - Release of version 1.1.5 -2009-10-08: +2013-11-27: +- PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name) +- Release of version 1.1.6 + diff -r 2c7384f1fac1 -r d0bab6ca89a5 LICENSE --- a/LICENSE Fri Oct 16 12:00:00 2009 +0200 +++ b/LICENSE Wed Nov 27 12:00:00 2013 +0100 @@ -1,5 +1,5 @@ -Copyright (c) 2009 Public Software Group e. V., Berlin, Germany +Copyright (c) 2009, 2013 Public Software Group e. V., Berlin, Germany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff -r 2c7384f1fac1 -r d0bab6ca89a5 pgsql/utf8proc.sql --- a/pgsql/utf8proc.sql Fri Oct 16 12:00:00 2009 +0200 +++ b/pgsql/utf8proc.sql Wed Nov 27 12:00:00 2013 +0100 @@ -1,6 +1,6 @@ CREATE OR REPLACE FUNCTION unifold (text) RETURNS text - LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', + LANGUAGE 'c' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', 'utf8proc_pgsql_unifold'; CREATE OR REPLACE FUNCTION unistrip (text) RETURNS text - LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', + LANGUAGE 'c' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', 'utf8proc_pgsql_unistrip'; diff -r 2c7384f1fac1 -r d0bab6ca89a5 ruby/gem/utf8proc.gemspec --- a/ruby/gem/utf8proc.gemspec Fri Oct 16 12:00:00 2009 +0200 +++ b/ruby/gem/utf8proc.gemspec Wed Nov 27 12:00:00 2013 +0100 @@ -1,7 +1,7 @@ require 'rubygems' SPEC = Gem::Specification.new do |s| s.name = 'utf8proc' - s.version = '1.1.5' + s.version = '1.1.6' 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 2c7384f1fac1 -r d0bab6ca89a5 utf8proc.c --- a/utf8proc.c Fri Oct 16 12:00:00 2009 +0200 +++ b/utf8proc.c Wed Nov 27 12:00:00 2013 +0100 @@ -96,7 +96,7 @@ const char *utf8proc_version(void) { - return "1.1.5"; + return "1.1.6"; } const char *utf8proc_errmsg(ssize_t errcode) {