Skip to content

Commit cf04a1a

Browse files
committed
Update release and bitstream version
1 parent 8dbea14 commit cf04a1a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app/Kanzi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static const int ARG_IDX_JOBS = 7;
3939
static const int ARG_IDX_VERBOSE = 8;
4040
static const int ARG_IDX_LEVEL = 9;
4141

42-
static const char* APP_HEADER = "Kanzi 1.6 (C) 2019, Frederic Langlet";
42+
static const char* APP_HEADER = "Kanzi 1.7 (C) 2020, Frederic Langlet";
4343

4444

4545
#ifdef CONCURRENCY_ENABLED

src/io/CompressedInputStream.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ namespace kanzi
111111

112112
private:
113113
static const int BITSTREAM_TYPE = 0x4B414E5A; // "KANZ"
114-
static const int BITSTREAM_FORMAT_VERSION = 8;
114+
static const int BITSTREAM_FORMAT_VERSION = 9;
115115
static const int DEFAULT_BUFFER_SIZE = 256 * 1024;
116116
static const int EXTRA_BUFFER_SIZE = 256;
117117
static const byte COPY_BLOCK_MASK = byte(0x80);

src/io/CompressedOutputStream.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ namespace kanzi {
9494

9595
private:
9696
static const int BITSTREAM_TYPE = 0x4B414E5A; // "KANZ"
97-
static const int BITSTREAM_FORMAT_VERSION = 8;
97+
static const int BITSTREAM_FORMAT_VERSION = 9;
9898
static const int DEFAULT_BUFFER_SIZE = 256 * 1024;
9999
static const byte COPY_BLOCK_MASK = byte(0x80);
100100
static const byte TRANSFORMS_MASK = byte(0x10);

0 commit comments

Comments
 (0)