Skip to content

Commit

Permalink
Release v1.4.1.3
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Hjelm <[email protected]>
  • Loading branch information
hjelmn committed Feb 1, 2019
1 parent 49df719 commit 6e46424
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 11 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
HIO NEWS
========

Last updated 2018-05-16
Last updated 2019-02-01

Release hio.1.4.1.3

This release fixes a couple of buffer overflows and ensures that we always
remove an existing dataset (if it exists) if the user passed the
HIO_FLAG_TRUNC flag on open.

Fixed github bugs:

- #43: Array bounds overrun

Release hio.1.4.1.2

Expand Down
6 changes: 4 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
#
# Copyright (c) 2014-2018 Los Alamos National Security, LLC. All rights
# reserved.
# Copyright (c) 2019 Triad National Security, LLC. All rights
# reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
Expand All @@ -10,7 +12,7 @@
#

AC_PREREQ([2.69])
AC_INIT([libhio], [1.4.1.2], [[email protected]])
AC_INIT([libhio], [1.4.1.3], [[email protected]])
AC_CONFIG_SRCDIR([src/hio_context.c])
AC_CONFIG_HEADERS([src/include/hio_config.h])
AC_CONFIG_MACRO_DIR([m4])
Expand All @@ -37,7 +39,7 @@ if ( test -n "$XTOS_VERSION" || test -n "$CRAYPE_DIR" ) && (test -z $CC || test
if test ! -n "$LD" ; then
LD=ld
fi
elif test -n "$MPICC" ; then
elif test ! "$MPICC" = "none" ; then
CC=${MPICC}
CXX=${MPICXX}
hio_use_mpi=1
Expand Down

0 comments on commit 6e46424

Please sign in to comment.