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

Version bump

parent 8e17f795
No related branches found
No related tags found
No related merge requests found
# libaec Changelog # libaec Changelog
All notable changes to libaec will be documented in this file. All notable changes to libaec will be documented in this file.
## [1.0.3] - 2019-02-04
### Changed
- Improvements to testing and fuzzing by Kurt Schwehr
### Fixed
- Various ubsan issues
## [1.0.2] - 2017-10-18 ## [1.0.2] - 2017-10-18
### Fixed ### Fixed
......
...@@ -15,7 +15,7 @@ endif(AEC_FUZZING) ...@@ -15,7 +15,7 @@ endif(AEC_FUZZING)
set(libaec_VERSION_MAJOR 1) set(libaec_VERSION_MAJOR 1)
set(libaec_VERSION_MINOR 0) set(libaec_VERSION_MINOR 0)
set(libaec_VERSION_PATCH 2) set(libaec_VERSION_PATCH 3)
set(CMAKE_BUILD_TYPE Release) set(CMAKE_BUILD_TYPE Release)
enable_testing() enable_testing()
......
AC_PREREQ([2.64]) AC_PREREQ([2.64])
AC_INIT([libaec], [1.0.2], [rosenhauer@dkrz.de]) AC_INIT([libaec], [1.0.3], [rosenhauer@dkrz.de])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config]) AC_CONFIG_AUX_DIR([config])
......
add_library(aec ${LIB_TYPE} ${libaec_SRCS}) add_library(aec ${LIB_TYPE} ${libaec_SRCS})
set_target_properties(aec PROPERTIES VERSION 0.0.8 SOVERSION 0) set_target_properties(aec PROPERTIES VERSION 0.0.9 SOVERSION 0)
add_library(sz ${LIB_TYPE} sz_compat.c) add_library(sz ${LIB_TYPE} sz_compat.c)
set_target_properties(sz PROPERTIES VERSION 2.0.1 SOVERSION 2) set_target_properties(sz PROPERTIES VERSION 2.0.1 SOVERSION 2)
......
...@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DBUILDING_LIBAEC ...@@ -3,7 +3,7 @@ AM_CPPFLAGS = -DBUILDING_LIBAEC
lib_LTLIBRARIES = libaec.la libsz.la lib_LTLIBRARIES = libaec.la libsz.la
libaec_la_SOURCES = encode.c encode_accessors.c decode.c \ libaec_la_SOURCES = encode.c encode_accessors.c decode.c \
encode.h encode_accessors.h decode.h encode.h encode_accessors.h decode.h
libaec_la_LDFLAGS = -version-info 0:8:0 -no-undefined libaec_la_LDFLAGS = -version-info 0:9:0 -no-undefined
libsz_la_SOURCES = sz_compat.c libsz_la_SOURCES = sz_compat.c
libsz_la_LIBADD = libaec.la 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