Changelog for 1.8 beta v1.8beta
authorLukáš Lalinský <lalinsky@gmail.com>
Sat, 14 Jul 2012 19:53:09 +0000 (21:53 +0200)
committerLukáš Lalinský <lalinsky@gmail.com>
Sat, 14 Jul 2012 19:53:09 +0000 (21:53 +0200)
CMakeLists.txt
NEWS

index 4692ebb228e0a16111ba77bb0febe26fc7cd9058..f4baae46033146ad00a7f701ab60b5653d0ac21d 100644 (file)
@@ -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 885c8543c053216356a60fbd9a02abc0842e2490..6c407a48d8a95adf1d5eb363f821bc64e944fc71 100644 (file)
--- 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)
 ===========================