summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2021-09-29 10:38:50 +0300
committerIvan Maidanski <ivmai@mail.ru>2021-09-29 11:30:12 +0300
commit549450ac1cb959c7c1b070a26e44cba114eaeb9f (patch)
tree164ffb5b21cc735fa1f338e4ed1c20e599c81640
parent47e9106c17b72e9ee5501308f69ea94531e798b3 (diff)
downloadbdwgc-549450ac1cb959c7c1b070a26e44cba114eaeb9f.tar.gz
Bump libgc version (for the development of 8.4 release)
* README.md: Restore build status badges (Travis, AppVeyor, Codecov, Coveralls, Coverity, LGTM, Hits-of-Code, Lines of code, GitHub code size, Github All Releases). * CMakeLists.txt (PACKAGE_VERSION): Bump package version to 8.3.0. * README.md: Likewise. * configure.ac (AC_INIT): Likewise. * include/gc_version.h (GC_TMP_VERSION_MINOR): Likewise.
-rw-r--r--.travis.yml2
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md15
-rw-r--r--appveyor.yml2
-rw-r--r--configure.ac2
-rw-r--r--include/gc_version.h4
6 files changed, 20 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index b775ade6..4e2729b9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,7 +20,7 @@ jobs:
coverity_scan:
project:
name: ivmai/bdwgc
- version: 8.2.0
+ version: 8.3.0
notification_email: ivmai@mail.ru
branch_pattern: master
build_command_prepend: "./configure --enable-cplusplus --disable-shared --enable-single-obj-compilation"
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 052e1af6..72a0015c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -24,7 +24,7 @@
cmake_minimum_required(VERSION 3.1)
-set(PACKAGE_VERSION 8.2.0)
+set(PACKAGE_VERSION 8.3.0)
# Version must match that in AC_INIT of configure.ac and that in README.
# Version must conform to: [0-9]+[.][0-9]+[.][0-9]+
diff --git a/README.md b/README.md
index 58ca2706..b6db6d95 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,19 @@
# Boehm-Demers-Weiser Garbage Collector
-This is version 8.2.0 (next release development) of a conservative garbage
+[![Travis-CI build status](https://travis-ci.com/ivmai/bdwgc.svg?branch=master)](https://travis-ci.com/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)
+
+[![Hits-of-Code](https://hitsofcode.com/github/ivmai/bdwgc?branch=master)](https://hitsofcode.com/github/ivmai/bdwgc/view)
+[![Lines of code](https://img.shields.io/tokei/lines/github/ivmai/bdwgc)](https://shields.io/category/size)
+[![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/ivmai/bdwgc)](https://shields.io/category/size)
+[![Github All Releases](https://img.shields.io/github/downloads/ivmai/bdwgc/total.svg)](https://shields.io/category/downloads)
+
+This is version 8.3.0 (next release development) of a conservative garbage
collector for C and C++.
diff --git a/appveyor.yml b/appveyor.yml
index dc83e4bc..e2d5cc65 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,4 @@
-version: 8.2.x-{build}
+version: 8.3.0-{build}
environment:
matrix:
diff --git a/configure.ac b/configure.ac
index ac8256a6..7ca5f077 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.2.0,https://github.com/ivmai/bdwgc/issues)
+AC_INIT(gc,8.3.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 de7a565a..37466cc4 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 2
-#define GC_TMP_VERSION_MICRO 0 /* 8.2.0 */
+#define GC_TMP_VERSION_MINOR 3
+#define GC_TMP_VERSION_MICRO 0 /* 8.3.0 */
#ifdef GC_VERSION_MAJOR
# if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \