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

Version bump

parent 8a6aeb58
No related branches found
Tags v1.0.2
No related merge requests found
# libaec Changelog
All notable changes to libaec will be documented in this file.
## [1.0.2] - 2017-10-18
### Fixed
- C99 requirement in all build systems
## [1.0.1] - 2017-07-14
### Fixed
......
......@@ -8,7 +8,7 @@ include(cmake/macros.cmake)
project(libaec)
set(libaec_VERSION_MAJOR 1)
set(libaec_VERSION_MINOR 0)
set(libaec_VERSION_PATCH 1)
set(libaec_VERSION_PATCH 2)
set(CMAKE_BUILD_TYPE Release)
enable_testing()
......
AC_PREREQ([2.64])
AC_INIT([libaec], [1.0.1], [rosenhauer@dkrz.de])
AC_INIT([libaec], [1.0.2], [rosenhauer@dkrz.de])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
......
add_library(aec ${LIB_TYPE} ${libaec_SRCS})
set_target_properties(aec PROPERTIES VERSION 0.0.7 SOVERSION 0)
set_target_properties(aec PROPERTIES VERSION 0.0.8 SOVERSION 0)
add_library(sz ${LIB_TYPE} sz_compat.c)
set_target_properties(sz PROPERTIES VERSION 2.0.1 SOVERSION 2)
......
......@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DBUILDING_LIBAEC
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:7:0 -no-undefined
libaec_la_LDFLAGS = -version-info 0:8:0 -no-undefined
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