Skip to content

Commit

Permalink
Bump version to 2.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quuxplusone committed Dec 17, 2020
1 parent 973bd67 commit 66e2668
Show file tree
Hide file tree
Showing 17 changed files with 31 additions and 22 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2005-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2005-2020, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
9 changes: 9 additions & 0 deletions doc/ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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.2.0 (2020-12-17)
--------------------------
* add HASH_NO_STDINT for platforms without C99 <stdint.h>
* silence many -Wcast-qual warnings (thanks, Olaf Bergmann!)
* skip hash computation when finding in an empty hash (thanks, Huansong Fu!)
* rename oom to utarray_oom, in utarray.h (thanks, Hong Xu!)
* rename oom to utstring_oom, in utstring.h (thanks, Hong Xu!)
* remove MurmurHash/HASH_MUR
Version 2.1.0 (2018-12-20)
--------------------------
* silence some Clang static analysis warnings
Expand Down
2 changes: 1 addition & 1 deletion doc/license.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<div id="mid">
<div id="main">
<pre>
Copyright (c) 2005-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2005-2020, 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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
uthash User Guide
=================
Troy D. Hanson, Arthur O'Dwyer
v2.1.0, December 2018
v2.2.0, December 2020

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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
utarray: dynamic array macros for C
===================================
Troy D. Hanson <tdh@tkhanson.net>
v2.1.0, December 2018
v2.2.0, December 2020

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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
utlist: linked list macros for C structures
===========================================
Troy D. Hanson <tdh@tkhanson.net>
v2.1.0, December 2018
v2.2.0, December 2020

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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
utringbuffer: dynamic ring-buffer macros for C
==============================================
Arthur O'Dwyer <arthur[email protected]>
v2.1.0, December 2018
v2.2.0, December 2020

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

Expand Down
2 changes: 1 addition & 1 deletion doc/utstack.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
utstack: intrusive stack macros for C
=====================================
Arthur O'Dwyer <arthur[email protected]>
v2.1.0, December 2018
v2.2.0, December 2020

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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
utstring: dynamic string macros for C
=====================================
Troy D. Hanson <tdh@tkhanson.net>
v2.1.0, December 2018
v2.2.0, December 2020

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
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"src/utstring.h"
],

"version": "2.1.0"
"version": "2.2.0"
}
4 changes: 2 additions & 2 deletions src/utarray.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2008-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2008-2020, 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.1.0
#define UTARRAY_VERSION 2.2.0

#include <stddef.h> /* size_t */
#include <string.h> /* memset, etc */
Expand Down
4 changes: 2 additions & 2 deletions src/uthash.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2003-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2003-2020, 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.1.0
#define UTHASH_VERSION 2.2.0

#include <string.h> /* memcmp, memset, strlen */
#include <stddef.h> /* ptrdiff_t */
Expand Down
4 changes: 2 additions & 2 deletions src/utlist.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2007-2020, 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.1.0
#define UTLIST_VERSION 2.2.0

#include <assert.h>

Expand Down
4 changes: 2 additions & 2 deletions src/utringbuffer.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2015-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2015-2020, 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.1.0
#define UTRINGBUFFER_VERSION 2.2.0

#include <stdlib.h>
#include <string.h>
Expand Down
4 changes: 2 additions & 2 deletions src/utstack.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2018-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2018-2020, 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 UTSTACK_H
#define UTSTACK_H

#define UTSTACK_VERSION 2.1.0
#define UTSTACK_VERSION 2.2.0

/*
* This file contains macros to manipulate a singly-linked list as a stack.
Expand Down
4 changes: 2 additions & 2 deletions src/utstring.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2008-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2008-2020, 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.1.0
#define UTSTRING_VERSION 2.2.0

#include <stdlib.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion tests/hashscan.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2005-2018, Troy D. Hanson http://troydhanson.github.com/uthash/
Copyright (c) 2005-2020, Troy D. Hanson http://troydhanson.github.com/uthash/
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand Down

0 comments on commit 66e2668

Please sign in to comment.