From: Ivan Maidanski Date: Thu, 6 Sep 2018 07:16:32 +0000 (+0300) Subject: Bump libgc version (for development of 8.2 release) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3ed8196c167cad7961455444d38234de8f59fe2;p=gc Bump libgc version (for development of 8.2 release) * README.md: Restore build status badges (Travis, AppVeyor, Codecov, Coveralls, Coverity, LGTM). * README.md: Bump version to 8.1.0. * configure.ac: Likewise. * include/gc_version.h (GC_TMP_VERSION_MINOR): Likewise. --- diff --git a/.travis.yml b/.travis.yml index 4b471e90..4dbfc6bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ matrix: coverity_scan: project: name: ivmai/bdwgc - version: 8.0.0 + version: 8.1.0 notification_email: ivmai@mail.ru branch_pattern: master build_command_prepend: "./configure --enable-cplusplus --disable-shared --enable-single-obj-compilation" diff --git a/README.md b/README.md index 91672033..47c27efb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,14 @@ # Boehm-Demers-Weiser Garbage Collector -This is version 8.0.0 (experimental release) of a conservative garbage +[![Travis-CI build status](https://travis-ci.org/ivmai/bdwgc.svg?branch=master)](https://travis-ci.org/ivmai/bdwgc) +[![AppVeyor CI build status](https://ci.appveyor.com/api/projects/status/github/ivmai/bdwgc?branch=master&svg=true)](https://ci.appveyor.com/project/ivmai/bdwgc) +[![Codecov.io](https://codecov.io/github/ivmai/bdwgc/coverage.svg?branch=master)](https://codecov.io/github/ivmai/bdwgc?branch=master) +[![Coveralls test coverage status](https://coveralls.io/repos/github/ivmai/bdwgc/badge.png?branch=master)](https://coveralls.io/github/ivmai/bdwgc) +[![Coverity Scan build status](https://scan.coverity.com/projects/10813/badge.svg)](https://scan.coverity.com/projects/ivmai-bdwgc) +[![LGTM Code Quality: Cpp](https://img.shields.io/lgtm/grade/cpp/g/ivmai/bdwgc.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/ivmai/bdwgc/context:cpp) +[![LGTM Total Alerts](https://img.shields.io/lgtm/alerts/g/ivmai/bdwgc.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/ivmai/bdwgc/alerts) + +This is version 8.1.0 (next release development) of a conservative garbage collector for C and C++. diff --git a/appveyor.yml b/appveyor.yml index 6c410066..bd743092 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 8.0.0-{build} +version: 8.1.0-{build} clone_depth: 50 diff --git a/configure.ac b/configure.ac index 3275569e..f8917597 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ dnl Process this file with autoconf to produce configure. dnl Initialization. -AC_INIT(gc,8.0.0,https://github.com/ivmai/bdwgc/issues) +AC_INIT(gc,8.1.0,https://github.com/ivmai/bdwgc/issues) dnl Version must conform to: [0-9]+[.][0-9]+[.][0-9]+ AC_CONFIG_SRCDIR(gcj_mlc.c) diff --git a/include/gc_version.h b/include/gc_version.h index a8ee4b0f..0e7e3a4b 100644 --- a/include/gc_version.h +++ b/include/gc_version.h @@ -29,8 +29,8 @@ /* Eventually this one may become unnecessary. For now we need */ /* it to keep the old-style build process working. */ #define GC_TMP_VERSION_MAJOR 8 -#define GC_TMP_VERSION_MINOR 0 -#define GC_TMP_VERSION_MICRO 0 /* 8.0.0 */ +#define GC_TMP_VERSION_MINOR 1 +#define GC_TMP_VERSION_MICRO 0 /* 8.1.0 */ #ifdef GC_VERSION_MAJOR # if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \