Skip to content

Commit 1507800

Browse files
authored
Release FLAC 1.5.0 (#801)
1 parent 1d0683e commit 1507800

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This changelog is not exhaustive, review [the git commit log](https://github.com/xiph/flac/commits) for an exhaustive list of changes.
44

5-
## git as of 18-12-2024
5+
## FLAC 1.5.0 (11-Feb-2025)
66

77
As there have been additions to the libFLAC interfaces, the libFLAC version number is incremented to 14. The libFLAC++ version number is incremented to 11.
88

@@ -11,7 +11,7 @@ As there have been additions to the libFLAC interfaces, the libFLAC version numb
1111
* The GFDL license file is updated to version 1.3
1212
* The markdown tool documentation is now also converted to HTML, for bundling with systems that do not read manpages (e.g. Windows)
1313
* Decoding of chained Ogg FLAC files is now possible (philippe44, Martijn van Beurden)
14-
* Various fixes (Sam James, Miroslav Lichvar, Cristian Rodríguez, manxorist, kgroeneveld, Lee Carré, Jevin Sweval)
14+
* Various fixes (Sam James, Miroslav Lichvar, Cristian Rodríguez, manxorist, kgroeneveld, Lee Carré, Jevin Sweval, braheezy, Wolfgang Stöggl)
1515
* Is is now possible in libFLAC, libFLAC++ and metaflac to write to a new file when changing metadata, instead of needing to overwrite an existing file
1616
* flac
1717
* Testing mode (flac -t) now parses all metadata blocks and warns the user when ID3v1 metadata is detected
@@ -36,6 +36,7 @@ As there have been additions to the libFLAC interfaces, the libFLAC version numb
3636
* Improve fuzzing of allocation failures
3737
* Various other fuzzing improvements
3838
* Documentation
39+
* The FLAC format is now specified in RFC 9639
3940
* The foreign metadata storage format used by the flac command line tool is now properly documented
4041

4142
## FLAC 1.4.3 (23-Jun-2023)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES OR DEFINED ENV{CFLAGS} OR
44
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo")
55
endif()
66

7-
project(FLAC VERSION 1.4.3) # HOMEPAGE_URL "https://www.xiph.org/flac/")
7+
project(FLAC VERSION 1.5.0) # HOMEPAGE_URL "https://www.xiph.org/flac/")
88

99
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
1010

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
2121

2222
AC_PREREQ(2.60)
23-
AC_INIT([flac],[1.4.3],[[email protected]],[flac],[https://www.xiph.org/flac/])
23+
AC_INIT([flac],[1.5.0],[[email protected]],[flac],[https://www.xiph.org/flac/])
2424
AC_CONFIG_HEADERS([config.h])
2525
AC_CONFIG_SRCDIR([src/flac/main.c])
2626
AC_CONFIG_MACRO_DIR([m4])

doc/Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = FLAC
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 1.4.3
35+
PROJECT_NUMBER = 1.5.0
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

man/flac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% flac(1) Version 1.4.3 | Free Lossless Audio Codec conversion tool
1+
% flac(1) Version 1.5.0 | Free Lossless Audio Codec conversion tool
22

33
# NAME
44

man/metaflac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% metaflac(1) Version 1.4.3 | Free Lossless Audio Codec metadata tool
1+
% metaflac(1) Version 1.5.0 | Free Lossless Audio Codec metadata tool
22

33
# NAME
44

src/libFLAC/format.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC git-" GIT_COMMIT_H
5555
#else
5656
/* PACKAGE_VERSION should come from configure */
5757
FLAC_API const char *FLAC__VERSION_STRING = PACKAGE_VERSION;
58-
FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " PACKAGE_VERSION " 20230623";
58+
FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " PACKAGE_VERSION " 20250211";
5959
#endif
6060

6161
FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
reference libFLAC 1.4.3 20230623
1+
reference libFLAC 1.5.0 20250211
22
ARTIST=The_artist_formerly_known_as_the_artist...
33
ARTIST=Chuck_Woolery
44
ARTIST=Vern

0 commit comments

Comments
 (0)