Skip to content

Commit

Permalink
[8.2.0]
Browse files Browse the repository at this point in the history
Bump gc version to 8.2.0 (experimental release)

* ChangeLog (8.2.0): Set release date.
* CMakeLists.txt (PACKAGE_VERSION): Bump minor version and set micro
to 0 (change package version to 8.2.0).
* README.md: Likewise.
* configure.ac (AC_INIT): Likewise.
* include/gc_version.h (GC_TMP_VERSION_MINOR, GC_TMP_VERSION_MICRO):
Likewise.
* CMakeLists.txt (LIBGCCPP_VER_INFO): Increment current and age
(change version info of libgccpp.so to 6:0:5).
* Makefile.am (LIBGCCPP_VER_INFO): Likewise.
* README.md: Remove build status badges (Travis, AppVeyor, Codecov,
Coveralls, Coverity, LGTM).
* doc/README.cmake (HOW TO IMPORT BDWGC): Update BDWgc version in the
sample.
  • Loading branch information
ivmai committed Sep 29, 2021
1 parent 8abae7f commit 47e9106
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
coverity_scan:
project:
name: ivmai/bdwgc
version: 8.1.0
version: 8.2.0
notification_email: ivmai@mail.ru
branch_pattern: master
build_command_prepend: "./configure --enable-cplusplus --disable-shared --enable-single-obj-compilation"
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -24,15 +24,15 @@

cmake_minimum_required(VERSION 3.1)

set(PACKAGE_VERSION 8.1.0)
set(PACKAGE_VERSION 8.2.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]+

# Info (current:revision:age) for the Libtool versioning system.
# These values should match those in cord/cord.am and Makefile.am.
set(LIBCORD_VER_INFO 5:0:4)
set(LIBGC_VER_INFO 6:0:5)
set(LIBGCCPP_VER_INFO 5:0:4)
set(LIBGCCPP_VER_INFO 6:0:5)

option(enable_cplusplus "C++ support" OFF)
if (enable_cplusplus)
Expand Down
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,5 +1,5 @@

== [8.1.0] (development) ==
== [8.2.0] 2021-09-29 ==

* Add API for accessing incremental GC time limit with nanosecond precision
* Add API function to force start of incremental collection
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Expand Up @@ -15,7 +15,7 @@
# These numbers should be updated at most once just before the release,
# and, optionally, at most once during the development (after the release).
LIBGC_VER_INFO = 6:0:5
LIBGCCPP_VER_INFO = 5:0:4
LIBGCCPP_VER_INFO = 6:0:5

## FIXME: `make distcheck' in this directory will not currently work.
## This is most likely to the explicit flags passed to submakes.
Expand Down
15 changes: 1 addition & 14 deletions README.md
@@ -1,19 +1,6 @@
# Boehm-Demers-Weiser Garbage Collector

[![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.1.0 (next release development) of a conservative garbage
This is version 8.2.0 (next release development) of a conservative garbage
collector for C and C++.


Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,4 +1,4 @@
version: 8.1.0-{build}
version: 8.2.x-{build}

environment:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -14,7 +14,7 @@
dnl Process this file with autoconf to produce configure.

dnl Initialization.
AC_INIT(gc,8.1.0,https://github.com/ivmai/bdwgc/issues)
AC_INIT(gc,8.2.0,https://github.com/ivmai/bdwgc/issues)
dnl Version must conform to: [0-9]+[.][0-9]+[.][0-9]+

AC_CONFIG_SRCDIR(gcj_mlc.c)
Expand Down
2 changes: 1 addition & 1 deletion doc/README.cmake
Expand Up @@ -55,7 +55,7 @@ HOW TO IMPORT BDWGC
Another project could add bdwgc as one of its dependencies with something like
this in their CMakeLists.txt:

find_package(BDWgc 8.1.0 REQUIRED)
find_package(BDWgc 8.2.0 REQUIRED)
add_executable(Foo foo.c)
target_link_libraries(Foo BDWgc::gc)

Expand Down
4 changes: 2 additions & 2 deletions include/gc_version.h
Expand Up @@ -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 1
#define GC_TMP_VERSION_MICRO 0 /* 8.1.0 */
#define GC_TMP_VERSION_MINOR 2
#define GC_TMP_VERSION_MICRO 0 /* 8.2.0 */

#ifdef GC_VERSION_MAJOR
# if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \
Expand Down

0 comments on commit 47e9106

Please sign in to comment.