Skip to content

Commit

Permalink
Release version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
khenriks committed May 25, 2020
1 parent 6615457 commit 89f5284
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# mp3fs News

## Important changes in 1.0 (2020-05-24)

mp3fs 1.0 is finally here\!

Fixes/code improvements:

- Many, many bug fixes (buffer overflows, memory leaks, and others)
- Memory handling improvements (using RAII with C++ nearly everywhere)
- Adopting C++11 and modernizing code
- Static tests for code (e.g. clang-format, clang-tidy, IWYU)

New features:

- Ogg Vorbis decoding support
- MP3 VBR encoding support
- Improved, much more customizable logging

Other:

- Docs licensed under GPL 3+ (now entire codebase is distributable as GPL 3)
- All docs switched to Markdown (including manpage, using pandoc)
- Docker image now available

## Important changes in 0.91 (2014-05-14)

This contains mainly bug fixes.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Process this file with autoconf to produce a configure script.

# Sets up package and initializes build system.
AC_INIT([MP3FS], [0.91])
AC_INIT([MP3FS], [1.0])
AC_CONFIG_SRCDIR([src/mp3fs.cc])
AC_CONFIG_AUX_DIR([config])
AM_INIT_AUTOMAKE([foreign])
Expand Down

0 comments on commit 89f5284

Please sign in to comment.