Skip to content
Snippets Groups Projects
Commit 9e22ee53 authored by Mathis Rosenhauer's avatar Mathis Rosenhauer
Browse files

Version bump

parent 3827bf39
No related branches found
Tags v0.3.4
No related merge requests found
......@@ -6,7 +6,7 @@ INCLUDE(cmake/macros.cmake)
PROJECT(libaec)
SET(libaec_VERSION_MAJOR 0)
SET(libaec_VERSION_MINOR 3)
SET(libaec_VERSION_PATCH 3)
SET(libaec_VERSION_PATCH 4)
SET(CMAKE_BUILD_TYPE Release)
ENABLE_TESTING()
......
2016-08-16 Mathis Rosenhauer <rosenhauer@dkrz.de>
v0.3.4
Pad incomplete last line when in SZ compatibility mode
2016-05-12 Mathis Rosenhauer <rosenhauer@dkrz.de>
v0.3.3
......
AC_PREREQ([2.64])
AC_INIT([libaec], [0.3.3], [rosenhauer@dkrz.de])
AC_INIT([libaec], [0.3.4], [rosenhauer@dkrz.de])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
......
SET(libaec_SRCS encode.c encode_accessors.c decode.c)
ADD_LIBRARY(aec ${LIB_TYPE} ${libaec_SRCS})
SET_TARGET_PROPERTIES(aec PROPERTIES
SOVERSION 0.0.4
SOVERSION 0.0.5
)
ADD_LIBRARY(sz ${LIB_TYPE} sz_compat.c)
SET_TARGET_PROPERTIES(sz PROPERTIES
......
lib_LTLIBRARIES = libaec.la libsz.la
libaec_la_SOURCES = encode.c encode_accessors.c decode.c \
encode.h encode_accessors.h decode.h
libaec_la_LDFLAGS = -version-info 0:4:0
libaec_la_LDFLAGS = -version-info 0:5:0
libsz_la_SOURCES = sz_compat.c
libsz_la_LIBADD = libaec.la
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment