Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisRosenhauer committed Aug 16, 2016
1 parent 3827bf3 commit 9e22ee5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2016-08-16 Mathis Rosenhauer <[email protected]>

v0.3.4

Pad incomplete last line when in SZ compatibility mode

2016-05-12 Mathis Rosenhauer <[email protected]>

v0.3.3
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.64])
AC_INIT([libaec], [0.3.3], [[email protected]])
AC_INIT([libaec], [0.3.4], [[email protected]])

AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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
Expand Down

0 comments on commit 9e22ee5

Please sign in to comment.