Version bump
authorMathis Rosenhauer <rosenhauer@dkrz.de>
Fri, 14 Jul 2017 13:06:07 +0000 (15:06 +0200)
committerMathis Rosenhauer <rosenhauer@dkrz.de>
Mon, 17 Jul 2017 09:47:18 +0000 (11:47 +0200)
15 files changed:
CHANGELOG.md
CMakeLists.txt
Copyright.txt
configure.ac
src/CMakeLists.txt
src/Makefile.am
src/aec.c
src/decode.c
src/decode.h
src/encode.c
src/encode.h
src/encode_accessors.c
src/encode_accessors.h
src/libaec.h
src/utime.c

index d1caabf..e748e57 100644 (file)
@@ -1,7 +1,7 @@
 # libaec Changelog
 All notable changes to libaec will be documented in this file.
 
-## [Unreleased]
+## [1.0.1] - 2017-07-14
 
 ### Fixed
 - Potential security vulnerabilities in decoder exposed by libFuzzer.
@@ -10,7 +10,7 @@ All notable changes to libaec will be documented in this file.
 - Fuzz target for decoding and encoding.
 
 ### Changed
-- Improved cmake support.
+- Improved Cmake support by Christoph Junghans
 
 ## [1.0.0] - 2016-11-16
 
index 02e87ba..e8b0e93 100644 (file)
@@ -6,7 +6,7 @@ include(cmake/macros.cmake)
 project(libaec)
 set(libaec_VERSION_MAJOR 1)
 set(libaec_VERSION_MINOR 0)
-set(libaec_VERSION_PATCH 0)
+set(libaec_VERSION_PATCH 1)
 set(CMAKE_BUILD_TYPE Release)
 enable_testing()
 
index 8e04dc3..72969b0 100644 (file)
@@ -1,4 +1,4 @@
-Copyright 2012 - 2016
+Copyright 2012 - 2017
 
 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
 Deutsches Klimarechenzentrum GmbH
index 513bc0a..bbb186e 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ([2.64])
-AC_INIT([libaec], [1.0.0], [rosenhauer@dkrz.de])
+AC_INIT([libaec], [1.0.1], [rosenhauer@dkrz.de])
 
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([config])
index 3d2029d..98ca4d4 100644 (file)
@@ -1,5 +1,5 @@
 add_library(aec ${LIB_TYPE} ${libaec_SRCS})
-set_target_properties(aec PROPERTIES VERSION 0.0.6 SOVERSION 0)
+set_target_properties(aec PROPERTIES VERSION 0.0.7 SOVERSION 0)
 add_library(sz ${LIB_TYPE} sz_compat.c)
 set_target_properties(sz PROPERTIES VERSION 2.0.1 SOVERSION 2)
 
index 2270c17..95fcd1c 100644 (file)
@@ -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:6:0 -no-undefined
+libaec_la_LDFLAGS = -version-info 0:7:0 -no-undefined
 
 libsz_la_SOURCES = sz_compat.c
 libsz_la_LIBADD = libaec.la
index c520e95..b3c6a36 100644 (file)
--- a/src/aec.c
+++ b/src/aec.c
@@ -2,7 +2,7 @@
  * @file aec.c
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH
index eeefa87..11dfd94 100644 (file)
@@ -2,7 +2,7 @@
  * @file decode.c
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH
index 609f949..78cdbcb 100644 (file)
@@ -2,7 +2,7 @@
  * @file decode.c
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH
index 47f2322..26838b4 100644 (file)
@@ -2,7 +2,7 @@
  * @file encode.c
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH
index 1485941..9622c44 100644 (file)
@@ -2,7 +2,7 @@
  * @file encode.h
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH
index 5a6cd96..a3ef9b9 100644 (file)
@@ -2,7 +2,7 @@
  * @file encode_accessors.c
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH
index 2c0c9ac..5c345ac 100644 (file)
@@ -2,7 +2,7 @@
  * @file encode_accessors.h
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH
index 333989c..4025532 100644 (file)
@@ -2,7 +2,7 @@
  * @file libaec.h
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH
index 772bb76..a7f1e99 100644 (file)
@@ -4,7 +4,7 @@
  * @author Thomas Jahns, Deutsches Klimarechenzentrum
  *
  * @section LICENSE
- * Copyright 2012 - 2016
+ * Copyright 2012 - 2017
  *
  * Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
  * Deutsches Klimarechenzentrum GmbH