Skip to content

Commit

Permalink
to version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gcerretani committed Mar 26, 2019
1 parent 85b5514 commit 5a8d342
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Copyright (c) 2014 rxi

Copyright (c) 2019 gcerretani

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "map",
"version": "0.1.0",
"repo": "rxi/map",
"version": "0.1.2",
"repo": "gcerretani/map",
"description": "Type-safe generic hash map",
"keywords": ["hashmap", "map", "table", "hashtable", "dict", "dictionary"],
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions src/map.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* Copyright (c) 2014 rxi
* Copyright (c) 2019 gcerretani
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See LICENSE for details.
Expand Down
3 changes: 2 additions & 1 deletion src/map.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* Copyright (c) 2014 rxi
* Copyright (c) 2019 gcerretani
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See LICENSE for details.
Expand All @@ -11,7 +12,7 @@
#include <string.h>
#include <stdbool.h>

#define MAP_VERSION "0.1.1"
#define MAP_VERSION "0.1.2"

struct map_node_t;
typedef struct map_node_t map_node_t;
Expand Down

0 comments on commit 5a8d342

Please sign in to comment.