From 0765f97aeb2912c159e642f65a8497df50138172 Mon Sep 17 00:00:00 2001 From: Vinod Koul Date: Sun, 24 Feb 2013 19:52:21 +0530 Subject: [PATCH] tinycompress: version 0.1.0 First version release of tinycompress library dc06a66 tinycompress: version 0.1.0 10fef72 tinycompres: remove unused variable e0810c0 tinycompress: add gapless meta data APIs 8f18a69 cplay: support auto-configuration of fragment size and count 495e5b4 compress: Add makefile for building under standard linux d815993 compress: Add missing header includes bb2650a compress: Block if unable to write all data in single write() acc0960 compress: Allow client to pass "don't care" for fragment size/number e24adce compress: Handle case of pause() during compress_write() 83f0278 compress: Remove hardcoded limit on length of poll() wait f9f3d07 compress: Fix incorrect error message on compress_resume() 14af3b0 compress: Change running from bitfield to plain int eb63cc9 compress: Remove unused buffer_size member from struct compress 21663cc compress: Change compress_write() to take buffer as const void * 0d20d8b compress: Add function to get timestamp in samples 0931870 compress: fix arithmetic exception in compress_get_hpointer 00732dc compress: cache the config values passed 2a455ef compress: remove unused variables 7191a18 compress: make variable 'running' as unsigned dca2963 compress: Do not put newlines on error messages 24a91e3 compress: Return error messages correctly from compress_open 590afad compress: Return error when failing to allocate compress struct 30b28ff compress: Extend limit on error messages bbb37bb compress: add compress_resume cf2e8d4 compress: write when we have a fragment to write 5d5a573 compress: fix the timestamp calculation 55b29e9 initial creation Signed-off-by: Vinod Koul --- include/tinycompress/version.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/tinycompress/version.h b/include/tinycompress/version.h index db191d6..795fe77 100644 --- a/include/tinycompress/version.h +++ b/include/tinycompress/version.h @@ -55,8 +55,8 @@ #define TINYCOMPRESS_LIB_MAJOR 0 /* major number of library version */ -#define TINYCOMPRESS_LIB_MINOR 0 /* minor number of library version */ -#define TINYCOMPRESS_LIB_SUBMINOR 2 /* subminor number of library version */ +#define TINYCOMPRESS_LIB_MINOR 1 /* minor number of library version */ +#define TINYCOMPRESS_LIB_SUBMINOR 0 /* subminor number of library version */ /** library version */ #define TINYCOMPRESS_LIB_VERSION \ @@ -65,6 +65,6 @@ TINYCOMPRESS_LIB_SUBMINOR) /** library version (string) */ -#define TINYCOMPRESS_LIB_VERSION_STR "0.0.2" +#define TINYCOMPRESS_LIB_VERSION_STR "0.1.0" #endif -- 2.47.3