From 04d273f1481534c400336bfbbe45d438a52a51a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Farkasv=C3=B6lgyi?= Date: Wed, 1 Sep 2021 19:49:50 +0200 Subject: [PATCH] release 2.8.0 --- History.md | 10 ++++++++++ clib.json | 2 +- src/version.h | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/History.md b/History.md index d25c919a..b6c31393 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,13 @@ +2.8.0 / 2021-09-01 +================== + * [add] Run tests workflow in pull requests (8bc6089) + * [add] Move common settings to a settings header + * [change] on osx, install curl using brew (#253) + * [fix] fix clib-settings.h compilation error (#259) + * [fix] Fix a memory issue when downloading files. (#256) + * [fix] Fix compile error on cygwin (#251) + * [fix] README.md:fix link to explanation of clib.json (#252) + 2.7.0 / 2021-01-26 ================== * [feature] Integrating clib-uninstall as `clib uninstall` command (#245) diff --git a/clib.json b/clib.json index 3ba24bc5..f25c6722 100644 --- a/clib.json +++ b/clib.json @@ -1,6 +1,6 @@ { "name": "clib", - "version": "2.7.0", + "version": "2.8.0", "repo": "clibs/clib", "install": "make clean uninstall build install", "makefile": "Makefile", diff --git a/src/version.h b/src/version.h index a23f2680..bf5d3cb7 100644 --- a/src/version.h +++ b/src/version.h @@ -6,5 +6,5 @@ // #ifndef CLIB_VERSION -#define CLIB_VERSION "2.7.0" +#define CLIB_VERSION "2.8.0" #endif