Skip to content

Commit

Permalink
Bump version to 2.0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quuxplusone committed Mar 2, 2017
1 parent 222e0d8 commit 7f1b50b
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 17 deletions.
7 changes: 7 additions & 0 deletions doc/ChangeLog.txt
Expand Up @@ -5,6 +5,13 @@ Click to return to the link:index.html[uthash home page].

NOTE: This ChangeLog may be incomplete and/or incorrect. See the git commit log.

Version 2.0.2 (2017-03-02)
--------------------------
* fix segfault in HASH_ADD_INORDER etc (thanks, Yana Kireyonok!)
* remove spurious cast to unsigned in utstring_len (thanks, Michal Sestrienka!)
* add uthash_memcmp and uthash_strlen for platforms without <stdlib.h> (thanks, Pawel Veselov!)
* fix a C++ incompatibility in utringbuffer
Version 2.0.1 (2016-07-05)
--------------------------
* in-order insertion macros HASH_ADD_INORDER etc (thanks, Thilo Schulz!)
Expand Down
2 changes: 1 addition & 1 deletion doc/license.html
Expand Up @@ -21,7 +21,7 @@
<div id="mid">
<div id="main">
<pre>
Copyright (c) 2005-2016, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2005-2017, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion doc/userguide.txt
@@ -1,7 +1,7 @@
uthash User Guide
=================
Troy D. Hanson, Arthur O'Dwyer
v2.0.1, July 2016
v2.0.2, March 2017

To download uthash, follow this link back to the
https://github.com/troydhanson/uthash[GitHub project page].
Expand Down
2 changes: 1 addition & 1 deletion doc/utarray.txt
@@ -1,7 +1,7 @@
utarray: dynamic array macros for C
===================================
Troy D. Hanson <tdh@tkhanson.net>
v2.0.1, July 2016
v2.0.2, March 2017

Here's a link back to the https://github.com/troydhanson/uthash[GitHub project page].

Expand Down
2 changes: 1 addition & 1 deletion doc/utlist.txt
@@ -1,7 +1,7 @@
utlist: linked list macros for C structures
===========================================
Troy D. Hanson <tdh@tkhanson.net>
v2.0.1, July 2016
v2.0.2, March 2017

Here's a link back to the https://github.com/troydhanson/uthash[GitHub project page].

Expand Down
2 changes: 1 addition & 1 deletion doc/utringbuffer.txt
@@ -1,7 +1,7 @@
utringbuffer: dynamic ring-buffer macros for C
==============================================
Arthur O'Dwyer <arthur.j.odwyer@gmail.com>
v2.0.1, July 2016
v2.0.2, March 2017

Here's a link back to the https://github.com/troydhanson/uthash[GitHub project page].

Expand Down
2 changes: 1 addition & 1 deletion doc/utstring.txt
@@ -1,7 +1,7 @@
utstring: dynamic string macros for C
=====================================
Troy D. Hanson <tdh@tkhanson.net>
v2.0.1, July 2016
v2.0.2, March 2017

Here's a link back to the https://github.com/troydhanson/uthash[GitHub project page].

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -23,5 +23,5 @@
"src/utstring.h"
],

"version": "2.0.1"
"version": "2.0.2"
}
4 changes: 2 additions & 2 deletions src/utarray.h
@@ -1,5 +1,5 @@
/*
Copyright (c) 2008-2016, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2008-2017, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand All @@ -26,7 +26,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef UTARRAY_H
#define UTARRAY_H

#define UTARRAY_VERSION 2.0.1
#define UTARRAY_VERSION 2.0.2

#ifdef __GNUC__
#define _UNUSED_ __attribute__ ((__unused__))
Expand Down
4 changes: 2 additions & 2 deletions src/uthash.h
@@ -1,5 +1,5 @@
/*
Copyright (c) 2003-2016, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2003-2017, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand All @@ -24,7 +24,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef UTHASH_H
#define UTHASH_H

#define UTHASH_VERSION 2.0.1
#define UTHASH_VERSION 2.0.2

#include <string.h> /* memcmp,strlen */
#include <stddef.h> /* ptrdiff_t */
Expand Down
4 changes: 2 additions & 2 deletions src/utlist.h
@@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2016, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2007-2017, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand All @@ -24,7 +24,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef UTLIST_H
#define UTLIST_H

#define UTLIST_VERSION 2.0.1
#define UTLIST_VERSION 2.0.2

#include <assert.h>

Expand Down
4 changes: 2 additions & 2 deletions src/utringbuffer.h
@@ -1,5 +1,5 @@
/*
Copyright (c) 2008-2016, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2008-2017, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand All @@ -26,7 +26,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef UTRINGBUFFER_H
#define UTRINGBUFFER_H

#define UTRINGBUFFER_VERSION 2.0.1
#define UTRINGBUFFER_VERSION 2.0.2

#include <stdlib.h>
#include <string.h>
Expand Down
4 changes: 2 additions & 2 deletions src/utstring.h
@@ -1,5 +1,5 @@
/*
Copyright (c) 2008-2016, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2008-2017, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand All @@ -26,7 +26,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef UTSTRING_H
#define UTSTRING_H

#define UTSTRING_VERSION 2.0.1
#define UTSTRING_VERSION 2.0.2

#ifdef __GNUC__
#define _UNUSED_ __attribute__ ((__unused__))
Expand Down

0 comments on commit 7f1b50b

Please sign in to comment.