utf8proc

changeset 14:d0bab6ca89a5 v1.1.6

Version 1.1.6

- PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name)
author jbe
date Wed Nov 27 12:00:00 2013 +0100 (2013-11-27)
parents 2c7384f1fac1
children 15450ff3d454
files Changelog LICENSE pgsql/utf8proc.sql ruby/gem/utf8proc.gemspec utf8proc.c
line diff
     1.1 --- a/Changelog	Fri Oct 16 12:00:00 2009 +0200
     1.2 +++ b/Changelog	Wed Nov 27 12:00:00 2013 +0100
     1.3 @@ -125,4 +125,7 @@
     1.4  2009-10-16:
     1.5  - Release of version 1.1.5
     1.6  
     1.7 -2009-10-08:
     1.8 +2013-11-27:
     1.9 +- PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name)
    1.10 +- Release of version 1.1.6
    1.11 +
     2.1 --- a/LICENSE	Fri Oct 16 12:00:00 2009 +0200
     2.2 +++ b/LICENSE	Wed Nov 27 12:00:00 2013 +0100
     2.3 @@ -1,5 +1,5 @@
     2.4  
     2.5 -Copyright (c) 2009 Public Software Group e. V., Berlin, Germany
     2.6 +Copyright (c) 2009, 2013 Public Software Group e. V., Berlin, Germany
     2.7  
     2.8  Permission is hereby granted, free of charge, to any person obtaining a
     2.9  copy of this software and associated documentation files (the "Software"),
     3.1 --- a/pgsql/utf8proc.sql	Fri Oct 16 12:00:00 2009 +0200
     3.2 +++ b/pgsql/utf8proc.sql	Wed Nov 27 12:00:00 2013 +0100
     3.3 @@ -1,6 +1,6 @@
     3.4  CREATE OR REPLACE FUNCTION unifold (text) RETURNS text
     3.5 -  LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so',
     3.6 +  LANGUAGE 'c' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so',
     3.7    'utf8proc_pgsql_unifold';
     3.8  CREATE OR REPLACE FUNCTION unistrip (text) RETURNS text
     3.9 -  LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so',
    3.10 +  LANGUAGE 'c' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so',
    3.11    'utf8proc_pgsql_unistrip';
     4.1 --- a/ruby/gem/utf8proc.gemspec	Fri Oct 16 12:00:00 2009 +0200
     4.2 +++ b/ruby/gem/utf8proc.gemspec	Wed Nov 27 12:00:00 2013 +0100
     4.3 @@ -1,7 +1,7 @@
     4.4  require 'rubygems'
     4.5  SPEC = Gem::Specification.new do |s|
     4.6    s.name = 'utf8proc'
     4.7 -  s.version = '1.1.5'
     4.8 +  s.version = '1.1.6'
     4.9    s.author = 'Public Software Group e. V., Berlin, Germany'
    4.10    s.homepage = 'http://www.public-software-group.org/utf8proc'
    4.11    s.summary = 'UTF-8 Unicode string processing'
     5.1 --- a/utf8proc.c	Fri Oct 16 12:00:00 2009 +0200
     5.2 +++ b/utf8proc.c	Wed Nov 27 12:00:00 2013 +0100
     5.3 @@ -96,7 +96,7 @@
     5.4  
     5.5  
     5.6  const char *utf8proc_version(void) {
     5.7 -  return "1.1.5";
     5.8 +  return "1.1.6";
     5.9  }
    5.10  
    5.11  const char *utf8proc_errmsg(ssize_t errcode) {

Impressum / About Us