Skip to content

Commit

Permalink
Release 1.0.31
Browse files Browse the repository at this point in the history
Fixes #693
  • Loading branch information
SoapGentoo committed Jan 24, 2021
1 parent 2789000 commit d60deb5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -15,7 +15,7 @@ if (POLICY CMP0091)
endif ()
endif ()

project(libsndfile VERSION 1.0.30)
project(libsndfile VERSION 1.0.31)

#
# Variables
Expand Down
2 changes: 1 addition & 1 deletion NEWS
@@ -1,4 +1,4 @@
Unreleased
Version 1.0.31 (2021-01-24)

* The releaser of libsndfile starting from this version is the libsndfile team
member @SoapGentoo, see AUTHORS for details.
Expand Down
12 changes: 3 additions & 9 deletions configure.ac
@@ -1,9 +1,9 @@
dnl Copyright (C) 1999-2020 Erik de Castro Lopo <erikd@mega-nerd.com>.
dnl Copyright (C) 1999-2021 Erik de Castro Lopo <erikd@mega-nerd.com>.

dnl Require autoconf version >= 2.69
AC_PREREQ([2.69])

AC_INIT([libsndfile],[1.0.30],[sndfile@mega-nerd.com],
AC_INIT([libsndfile],[1.0.31],[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 @@ -84,13 +84,7 @@ dnl 5. If any interfaces have been added since the last public release, then i
dnl age.
dnl 6. If any interfaces have been removed since the last public release, then set age
dnl to 0.

CLEAN_VERSION=`echo $PACKAGE_VERSION | $SED "s/p.*//"`
VERSION_MAJOR=`echo $PACKAGE_VERSION | $SED "s/\..*//"`
VERSION_MINOR=`echo $CLEAN_VERSION | $SED "s/.*\.//"`
GEN_TOOL="autoconf"

SHARED_VERSION_INFO="$VERSION_MAJOR:$VERSION_MINOR:0"
SHARED_VERSION_INFO="1:31:0"

dnl ------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
@@ -1,6 +1,6 @@
---
author: "The libsndfile team"
version: "1.0.30"
version: "1.0.31"

markdown: kramdown
plugins:
Expand Down
2 changes: 2 additions & 0 deletions docs/index.md
Expand Up @@ -140,6 +140,8 @@ Here is the release history for libsndfile:
documentation. Integrate GitHub Actions for faster test builds and Oss-Fuzz
for fuzzing tests. Move sndfile.h.in from src/ to include/ directory. To avoid
problems, delete old generated sndfile.h from $(top_builddir)/src.
* Version 1.0.31 (January 24 2021) Bugfix release. Fix multiple memory leaks
reported by OSS-Fuzz. More SSE2-optimized functions for x86 and amd64.

## Similar or Related Projects

Expand Down

6 comments on commit d60deb5

@fredvs
Copy link

@fredvs fredvs commented on d60deb5 Jan 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello.

Thanks for this excellent news.
2021 begins good!

Could it be possible to give the binaries of the Windows version?
We have no problems to compile libsndfile for Unix system, included for aarch64 cpu.

But for Windows it is something else. ;-)

Anyway, congrats for the new release.

Fre;D

@SoapGentoo
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@evpobr generally produces them, and I sign them. Give it a bit more time, we should have them later.

@fredvs
Copy link

@fredvs fredvs commented on d60deb5 Jan 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ooops, indeed, I remember now.

Ok, ok, perfect, have a perfect day.

Fre;D

@fredvs
Copy link

@fredvs fredvs commented on d60deb5 Jan 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Re-hello.

There is a recent commit of @arthurt about mp3 tags:
b91c260

Does it mean that mp3 decoding is added in that last release?

(By the way, wow for his Opus add-in, it works perfectly here).

@arthurt
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The commit b91c260 is part of some fixes for existing ID3v2 headers skipping support.

This release does not contain mp3 support. It's close to ready for inclusion, but not quite there yet. I may have some time this weekend to get around to it and some bugs, but I've been swamped with work taking up all the energy I have for programming for the past year.

@evpobr
Copy link
Member

@evpobr evpobr commented on d60deb5 Jan 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I understand you. It is often very difficult to find time for programming. But when I see that I've helped other people by working here, I realize that it makes sense.

Please sign in to comment.