aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukáš Lalinský <lalinsky@gmail.com>2012-07-14 21:53:09 +0200
committerLukáš Lalinský <lalinsky@gmail.com>2012-07-14 21:53:09 +0200
commit3b392f2402bb1b4413f423dfb6d7609b66dc97be (patch)
treed0ae4b48c65c0e1eef595000960f35b5358c74b9
parent8ff0feb28ea4f31af216dc5de404ef94442f2c93 (diff)
Changelog for 1.8 betav1.8beta
-rw-r--r--CMakeLists.txt10
-rw-r--r--NEWS17
2 files changed, 19 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4692ebb2..f4baae46 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -47,8 +47,8 @@ if (MSVC AND ENABLE_STATIC_RUNTIME)
endif()
set(TAGLIB_LIB_MAJOR_VERSION "1")
-set(TAGLIB_LIB_MINOR_VERSION "7")
-set(TAGLIB_LIB_PATCH_VERSION "2")
+set(TAGLIB_LIB_MINOR_VERSION "8")
+set(TAGLIB_LIB_PATCH_VERSION "0")
set(TAGLIB_LIB_VERSION_STRING "${TAGLIB_LIB_MAJOR_VERSION}.${TAGLIB_LIB_MINOR_VERSION}.${TAGLIB_LIB_PATCH_VERSION}")
@@ -56,9 +56,9 @@ set(TAGLIB_LIB_VERSION_STRING "${TAGLIB_LIB_MAJOR_VERSION}.${TAGLIB_LIB_MINOR_VE
# 2. If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0.
# 3. If any interfaces have been added since the last public release, then increment age.
# 4. If any interfaces have been removed since the last public release, then set age to 0.
-set(TAGLIB_SOVERSION_CURRENT 11)
-set(TAGLIB_SOVERSION_REVISION 2)
-set(TAGLIB_SOVERSION_AGE 10)
+set(TAGLIB_SOVERSION_CURRENT 12)
+set(TAGLIB_SOVERSION_REVISION 0)
+set(TAGLIB_SOVERSION_AGE 11)
math(EXPR TAGLIB_SOVERSION_MAJOR "${TAGLIB_SOVERSION_CURRENT} - ${TAGLIB_SOVERSION_AGE}")
math(EXPR TAGLIB_SOVERSION_MINOR "${TAGLIB_SOVERSION_AGE}")
diff --git a/NEWS b/NEWS
index 885c8543..6c407a48 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,20 @@
-TagLib 1.8 (In Development)
-===========================
+TagLib 1.8 BETA (Jul 14, 2012)
+==============================
+ * New API for accessing tags by name.
+ * New abstract I/O stream layer to allow custom I/O handlers.
* Support for writing ID3v2.3 tags.
- * Added methods for checking if WMA and MP4 files are DRM-protected.
+ * Support for various module file formats (MOD, S3M, IT, XM).
+ * Support for MP4 and ASF is now enabled by default.
* Started using atomic int operations for reference counting.
+ * Added methods for checking if WMA and MP4 files are DRM-protected.
+ * Added taglib_free to the C bindings.
+ * New method to allow removing pictures from FLAC files.
+ * Support for reading audio properties from ALAC and Musepack SV8 files.
+ * Added replay-gain information to Musepack audio properties.
+ * Support for APEv2 binary tags.
+ * Many AudioProperties subclasses now provide information about the total number of samples.
+ * Various small bug fixes.
TagLib 1.7.2 (Apr 20, 2012)
===========================