Skip to content

Commit

Permalink
Release 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SoapGentoo committed Aug 13, 2023
1 parent ffd8079 commit 72f6af1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,6 +5,13 @@ 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.2.2] - 2023-08-13

### Fixed

* Fixed invalid regex in src/create_symbols_file.py
* Fixed passing null pointer to printf %s in tests

## [1.2.1] - 2023-08-12

### Added
Expand Down Expand Up @@ -176,7 +183,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Uninitialized variable in `psf_binheader_readf`(), thanks @shao-hua-li,
credit to OSS-Fuzz ([issue 25364](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=25364)).
[Unreleased]: https://github.com/libsndfile/libsndfile/compare/1.2.1...HEAD
[Unreleased]: https://github.com/libsndfile/libsndfile/compare/1.2.2...HEAD
[1.2.2]: https://github.com/libsndfile/libsndfile/compare/1.2.1...1.2.2
[1.2.1]: https://github.com/libsndfile/libsndfile/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/libsndfile/libsndfile/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/libsndfile/libsndfile/compare/1.0.31...1.1.0
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -35,7 +35,7 @@ if (BUILD_REGTEST)
list (APPEND VCPKG_MANIFEST_FEATURES "regtest")
endif ()

project(libsndfile VERSION 1.2.1)
project(libsndfile VERSION 1.2.2)

#
# Variables
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -3,7 +3,7 @@ dnl Copyright (C) 1999-2022 Erik de Castro Lopo <erikd@mega-nerd.com>.
dnl Require autoconf version >= 2.69
AC_PREREQ([2.69])

AC_INIT([libsndfile],[1.2.1],[sndfile@mega-nerd.com],
AC_INIT([libsndfile],[1.2.2],[sndfile@mega-nerd.com],
[libsndfile],[http://libsndfile.github.io/libsndfile/])

dnl Check whether we want to set defaults for CFLAGS, CXXFLAGS, CPPFLAGS and LDFLAGS
Expand Down Expand Up @@ -88,7 +88,7 @@ dnl to 0.
dnl This is libtool version of library, we add it to `--version-info` property.

m4_define([lt_current], [1])
m4_define([lt_revision], [36])
m4_define([lt_revision], [37])
m4_define([lt_age], [0])

dnl This is ABI version for linker scripts, CMake uses the same format for
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
@@ -1,6 +1,6 @@
---
author: "The libsndfile team"
version: "1.2.1"
version: "1.2.2"

markdown: kramdown
plugins:
Expand Down
3 changes: 2 additions & 1 deletion docs/index.md
Expand Up @@ -146,7 +146,8 @@ Here is the release history for libsndfile:
releases. Added long-awaited MP3 support. Numerous improvements and bugfixes.
* Version 1.2.0 (December 25 2022) Various bugfixes,
removed artificial samplerate limit
* Version 1.2.1 (August 12 2023) Patch release, various bufixes.
* Version 1.2.1 (August 12 2023) Patch release, various bugfixes.
* Version 1.2.2 (August 13 2023) Patch release, various bugfixes.

## Similar or Related Projects

Expand Down

0 comments on commit 72f6af1

Please sign in to comment.