]> granicus.if.org Git - taglib/commitdiff
Set the version number to 1.7
authorLukáš Lalinský <lalinsky@gmail.com>
Sun, 13 Feb 2011 10:59:33 +0000 (10:59 +0000)
committerLukáš Lalinský <lalinsky@gmail.com>
Sun, 13 Feb 2011 10:59:33 +0000 (10:59 +0000)
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@1220230 283d02a7-25f6-0310-bc7c-ecb5cbfe19da

CMakeLists.txt
Makefile.am
NEWS
bindings/c/taglib_c.pc.in
configure.in.in
taglib-config.cmake
taglib-config.in
taglib.pc.in
taglib/toolkit/taglib.h

index 4ecf7adc2f715686071550f1a2f2ad1e844d4a4b..d2cad2d4ee289bc2c2bccde719cbdf48781f81dc 100644 (file)
@@ -39,8 +39,8 @@ if (WIN32)
 endif (WIN32)
 
 SET(TAGLIB_LIB_MAJOR_VERSION "1")
-SET(TAGLIB_LIB_MINOR_VERSION "6")
-SET(TAGLIB_LIB_PATCH_VERSION "3")
+SET(TAGLIB_LIB_MINOR_VERSION "7")
+SET(TAGLIB_LIB_PATCH_VERSION "0")
 
 SET(TAGLIB_LIB_VERSION_STRING "${TAGLIB_LIB_MAJOR_VERSION}.${TAGLIB_LIB_MINOR_VERSION}.${TAGLIB_LIB_PATCH_VERSION}")
 
index edc8b94e706be5326cf2015dacdca3c6d15f713a..1c51b5ac419342093da48525bfe8680dce28ad45 100644 (file)
@@ -38,7 +38,7 @@ apidox:
        fi; \
        cp $(top_srcdir)/admin/Doxyfile.global taglib.doxyfile; \
        echo "PROJECT_NAME        = TagLib" >> taglib.doxyfile; \
-       echo "PROJECT_NUMBER      = \"Version 1.6.3\"" >> taglib.doxyfile; \
+       echo "PROJECT_NUMBER      = \"Version 1.7\"" >> taglib.doxyfile; \
        echo "INPUT               = $(srcdir)" >> taglib.doxyfile; \
        echo "OUTPUT_DIRECTORY    = doc/api" >> taglib.doxyfile; \
        echo "HTML_OUTPUT         = html" >> taglib.doxyfile; \
diff --git a/NEWS b/NEWS
index 512c29b6101de1821be0264dbc8d30ae8bfd5e8a..017178bd9b582d5f2313326860dd7b4c0a386270 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
 TagLib 1.7
 ==========
 
+1.7 RC1:
+
  * Support for reading/writing tags from Monkey's Audio files. (BUG:210404)
  * Support for reading/writing embedded pictures from WMA files.
  * Support for reading/writing embedded pictures from FLAC files (BUG:218696).
@@ -12,7 +14,9 @@ TagLib 1.7
  * Added function ByteVector::toHex() for hex-encoding of byte vectors.
  * WavPack reader now tries to get the audio length by finding the final
    block, if the header doesn't have the information. (BUG:258016)
-* Fixed a memory leak in the ID3v2.2 PIC frame parser. (BUG:257007)
+ * Fixed a memory leak in the ID3v2.2 PIC frame parser. (BUG:257007)
+ * Fixed writing of RIFF files with even chunk sizes. (BUG:243954)
+ * Fixed compilation on MSVC 2010.
 
 TagLib 1.6.3 (Apr 17, 2010)
 ===========================
index 7aeed91be0128de638b8a2c6db5dbe439ada4bc3..21b90acc51e9cef4fcc294b13b079a8e9802c867 100644 (file)
@@ -6,6 +6,6 @@ includedir=@includedir@
 Name: TagLib C Bindings
 Description: Audio meta-data library (C bindings)
 Requires: taglib
-Version: 1.6.3
+Version: 1.7.0
 Libs: -L${libdir} -ltag_c
 Cflags: -I${includedir}/taglib 
index 91ed481b76b810a5d42bf8c3c9ab98f42d79cf0b..3b0bc68e8297fdd8d61e66a7d2fcd9a045323a06 100644 (file)
@@ -38,7 +38,7 @@ dnl Perform program name transformation
 AC_ARG_PROGRAM
 
 dnl Automake doc recommends to do this only here. (Janos)
-AM_INIT_AUTOMAKE(taglib,1.6.3)
+AM_INIT_AUTOMAKE(taglib,1.7.0)
 
 dnl almost the same like KDE_SET_PEFIX but the path is /usr/local
 dnl
index d7d49e6abcc06203aa3bc761c629f91cb9e35749..ccec06f6702e3d9fd1ecd65ea5ffa0c3893713a4 100644 (file)
@@ -35,7 +35,7 @@ do
          flags="$flags -I$includedir/taglib"
          ;;
     --version)
-         echo 1.6.3
+         echo 1.7.0
          ;;
     --prefix)
          echo $prefix
index 359def774f54f262c883a6d44f7507d6d3df4857..6a9ab263f7090dc7d2491b1f6c405331c905d91a 100644 (file)
@@ -35,7 +35,7 @@ do
          flags="$flags -I$includedir/taglib"
          ;;
     --version)
-         echo 1.6.3
+         echo 1.7.0
          ;;
     --prefix)
          echo $prefix
index 3ab0c279f374c717c2152670bd298dbcc69f557a..0b3a53927b0e6fabb8a42f5f5d7f10882750d32a 100644 (file)
@@ -6,6 +6,6 @@ includedir=@includedir@
 Name: TagLib
 Description: Audio meta-data library
 Requires: 
-Version: 1.6.3
+Version: 1.7.0
 Libs: -L${libdir} -ltag
 Cflags: -I${includedir}/taglib 
index 811d458401a67624abba9677cf305b97291031e0..d55138cd9411e8ca9310036bd43c0a0c46f03f3a 100644 (file)
@@ -27,8 +27,8 @@
 #define TAGLIB_H
 
 #define TAGLIB_MAJOR_VERSION 1
-#define TAGLIB_MINOR_VERSION 6
-#define TAGLIB_PATCH_VERSION 3
+#define TAGLIB_MINOR_VERSION 7
+#define TAGLIB_PATCH_VERSION 0
 
 #if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 1))
 #define TAGLIB_IGNORE_MISSING_DESTRUCTOR _Pragma("GCC diagnostic ignored \"-Wnon-virtual-dtor\"")