diff --git a/History.md b/History.md index f4da5d90..d25c919a 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,11 @@ +2.7.0 / 2021-01-26 +================== + * [feature] Integrating clib-uninstall as `clib uninstall` command (#245) + * [feature] Integrating clib-validate to automatically validate `clib.json` files (#242) + * [deprecated] Deperecated `clib-*` executable plugins (#244) + * [fix] `clib init` can't always determine the current directory name (#240) + * [fix] memory leak in clib.c (#353834e) + 2.6.1 / 2021-01-14 ================== * [fix] Expire the search cache (#234) diff --git a/clib.json b/clib.json index 57292998..3ba24bc5 100644 --- a/clib.json +++ b/clib.json @@ -1,6 +1,6 @@ { "name": "clib", - "version": "2.6.1", + "version": "2.7.0", "repo": "clibs/clib", "install": "make clean uninstall build install", "makefile": "Makefile", diff --git a/src/version.h b/src/version.h index 2321bb59..a23f2680 100644 --- a/src/version.h +++ b/src/version.h @@ -6,5 +6,5 @@ // #ifndef CLIB_VERSION -#define CLIB_VERSION "2.6.1" +#define CLIB_VERSION "2.7.0" #endif