Browse Source

Release 1.1.1

Fix compatibility with old versions of gcc and clang
release/1.1.1 1.1.1
Johan Pascal 5 years ago
parent
commit
faaa895862
4 changed files with 10 additions and 5 deletions
  1. +5
    -0
      CHANGELOG.md
  2. +1
    -1
      CMakeLists.txt
  3. +1
    -1
      configure.ac
  4. +3
    -3
      include/bcg729/decoder.h

+ 5
- 0
CHANGELOG.md View File

@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.1.1] - 2020-11-17
### Fixed
- compatibility with old compilers
## [1.1.0] - 2020-11-17
### Fixed


+ 1
- 1
CMakeLists.txt View File

@ -21,7 +21,7 @@
############################################################################
cmake_minimum_required(VERSION 3.1)
project(bcg729 VERSION 1.1.0 LANGUAGES C)
project(bcg729 VERSION 1.1.1 LANGUAGES C)
set(PACKAGE "${PROJECT_NAME}")


+ 1
- 1
configure.ac View File

@ -3,7 +3,7 @@
AC_INIT([bcg729],[1.1.0])
AC_INIT([bcg729],[1.1.1])
AC_CANONICAL_SYSTEM
AC_PREREQ(2.63)
AC_CONFIG_SRCDIR([src/encoder.c])


+ 3
- 3
include/bcg729/decoder.h View File

@ -21,9 +21,9 @@
typedef struct bcg729DecoderChannelContextStruct_struct bcg729DecoderChannelContextStruct;
#include <stdint.h>
// Version number is 1.1.0, map it on an integer
// Note: This define starts with version 1.1.0
#define BCG729_VERSION_NUMBER 0x010100
// Version number is 1.1.1, map it on an integer
// Note: This define starts with version 1.1.1
#define BCG729_VERSION_NUMBER 0x010101
#ifdef _WIN32
#ifdef BCG729_STATIC


Loading…
Cancel
Save