Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.66' '-r1.67' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2005/01/13 10:30:40 1.66 +++ ChangeLog 2005/01/13 10:37:36 1.67 @@ -11,7 +11,7 @@ This is a list of all changes to OSSP uuid. For a more brief summary please have a look at the NEWS file. - Changes between 1.1.1 and 1.1.2 (18-Nov-2004 to xx-Jan-2005) + Changes between 1.1.1 and 1.1.2 (18-Nov-2004 to 13-Jan-2005) o Fix generation of v3 UUIDs by adding support for 64-bit platforms to the underlying uuid_md5.c code (which internally is based on Index: ossp-pkg/uuid/README RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/README,v rcsdiff -q -kk '-r1.23' '-r1.24' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/README,v' 2>/dev/null --- README 2004/12/31 19:20:34 1.23 +++ README 2005/01/13 10:37:36 1.24 @@ -5,7 +5,7 @@ |_|_|_| \___/|____/____/|_| \__,_|\__,_|_|\__,_| OSSP uuid - Universally Unique Identifier - Version 1.1.1 (18-Nov-2004) + Version 1.1.2 (13-Jan-2005) ABSTRACT Index: ossp-pkg/uuid/perl/uuid.pm RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.pm,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.pm,v' 2>/dev/null --- uuid.pm 2004/12/31 19:20:39 1.5 +++ uuid.pm 2005/01/13 10:37:37 1.6 @@ -41,7 +41,7 @@ ## # API version -our $VERSION = do { my @v = ('1.1.1' =~ m/\d+/g); sprintf("%d.".("%02d"x$#v), @v); }; +our $VERSION = do { my @v = ('1.1.2' =~ m/\d+/g); sprintf("%d.".("%02d"x$#v), @v); }; # API inheritance our @ISA = qw(Exporter); Index: ossp-pkg/uuid/uuid_vers.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_vers.h,v rcsdiff -q -kk '-r1.12' '-r1.13' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_vers.h,v' 2>/dev/null --- uuid_vers.h 2004/11/18 15:59:52 1.12 +++ uuid_vers.h 2005/01/13 10:37:36 1.13 @@ -8,7 +8,7 @@ #ifndef _UUID_VERS_H_ #define _UUID_VERS_H_ -#define _UUID_VERSION 0x101201 +#define _UUID_VERSION 0x101202 typedef struct { const int v_hex; @@ -32,13 +32,13 @@ #undef _UUID_VERS_H_AS_HEADER_ _uuid_version_t _uuid_version = { - 0x101201, - "1.1.1", - "1.1.1 (18-Nov-2004)", - "This is OSSP uuid, Version 1.1.1 (18-Nov-2004)", - "OSSP uuid 1.1.1 (18-Nov-2004)", - "OSSP uuid/1.1.1", - "@(#)OSSP uuid 1.1.1 (18-Nov-2004)", + 0x101202, + "1.1.2", + "1.1.2 (13-Jan-2005)", + "This is OSSP uuid, Version 1.1.2 (13-Jan-2005)", + "OSSP uuid 1.1.2 (13-Jan-2005)", + "OSSP uuid/1.1.2", + "@(#)OSSP uuid 1.1.2 (13-Jan-2005)", "$Id$" };