Skip to content

Commit 9e22ee5

Browse files
Version bump
1 parent 3827bf3 commit 9e22ee5

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ INCLUDE(cmake/macros.cmake)
66
PROJECT(libaec)
77
SET(libaec_VERSION_MAJOR 0)
88
SET(libaec_VERSION_MINOR 3)
9-
SET(libaec_VERSION_PATCH 3)
9+
SET(libaec_VERSION_PATCH 4)
1010
SET(CMAKE_BUILD_TYPE Release)
1111
ENABLE_TESTING()
1212

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2016-08-16 Mathis Rosenhauer <rosenhauer@dkrz.de>
2+
3+
v0.3.4
4+
5+
Pad incomplete last line when in SZ compatibility mode
6+
17
2016-05-12 Mathis Rosenhauer <rosenhauer@dkrz.de>
28

39
v0.3.3

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.64])
2-
AC_INIT([libaec], [0.3.3], [rosenhauer@dkrz.de])
2+
AC_INIT([libaec], [0.3.4], [rosenhauer@dkrz.de])
33

44
AC_CONFIG_MACRO_DIR([m4])
55
AC_CONFIG_AUX_DIR([config])

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SET(libaec_SRCS encode.c encode_accessors.c decode.c)
22
ADD_LIBRARY(aec ${LIB_TYPE} ${libaec_SRCS})
33
SET_TARGET_PROPERTIES(aec PROPERTIES
4-
SOVERSION 0.0.4
4+
SOVERSION 0.0.5
55
)
66
ADD_LIBRARY(sz ${LIB_TYPE} sz_compat.c)
77
SET_TARGET_PROPERTIES(sz PROPERTIES

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
lib_LTLIBRARIES = libaec.la libsz.la
22
libaec_la_SOURCES = encode.c encode_accessors.c decode.c \
33
encode.h encode_accessors.h decode.h
4-
libaec_la_LDFLAGS = -version-info 0:4:0
4+
libaec_la_LDFLAGS = -version-info 0:5:0
55

66
libsz_la_SOURCES = sz_compat.c
77
libsz_la_LIBADD = libaec.la

0 commit comments

Comments
 (0)