Skip to content

Commit

Permalink
Bump version and NEWS for v1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeu committed Oct 22, 2016
1 parent d70e990 commit 8d156ab
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 17 deletions.
9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Changes in 1.5.9 (22 October 2016)
* Fixed resource leak when reading character data from HDF5 MAT file
* Fixed bug writing struct to HDF5 MAT file: Mat_VarWrite never returned 0 on success
* Fixed bug writing sparse logical array to HDF5 MAT file
* Fixed bug calculating array sizes of structs, cells, complex and sparse arrays in Mat_VarGetSize
* Fixed bug duplicating sparse array with empty data in Mat_VarDuplicate
* Fixed segmentation fault when reading compressed v5 MAT file with opaque class
* Updated support of HDF5 v1.10.x: No longer depend on deprecated v1.8.x symbols

Changes in 1.5.8 (30 June 2016)
* Fixed bug writing array to v4 MAT file on big endian architecture (broken by v1.5.7)

Expand Down
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dnl CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
dnl ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
dnl POSSIBILITY OF SUCH DAMAGE.

AC_INIT([MATIO],[1.5.8],[chulbe2lsu@users.sourceforge.net],[],
AC_INIT([MATIO],[1.5.9],[chulbe2lsu@users.sourceforge.net],[],
[http://sourceforge.net/projects/matio])
AC_CONFIG_SRCDIR([src/matio.h])
AC_CONFIG_AUX_DIR([config])
Expand All @@ -41,10 +41,10 @@ AC_CANONICAL_HOST
AC_DEFINE_UNQUOTED([MATIO_PLATFORM],"${host}",[Platform])
AC_DEFINE_UNQUOTED([MATIO_MAJOR_VERSION],1,[Matio major version number])
AC_DEFINE_UNQUOTED([MATIO_MINOR_VERSION],5,[Matio minor version number])
AC_DEFINE_UNQUOTED([MATIO_RELEASE_LEVEL],8,[Matio release level number])
AC_DEFINE_UNQUOTED([MATIO_VERSION],158,[Matio version number])
PACKAGE_RELEASE_DATE="30 June 2016"
AC_DEFINE_UNQUOTED([MATIO_VERSION_STR],"1.5.8",[Matio version number])
AC_DEFINE_UNQUOTED([MATIO_RELEASE_LEVEL],9,[Matio release level number])
AC_DEFINE_UNQUOTED([MATIO_VERSION],159,[Matio version number])
PACKAGE_RELEASE_DATE="22 October 2016"
AC_DEFINE_UNQUOTED([MATIO_VERSION_STR],"1.5.9",[Matio version number])
AC_SUBST(PACKAGE_RELEASE_DATE)

AC_ARG_VAR([FCLDFLAGS],[Fortran compiler-specific flags at link time])
Expand Down
4 changes: 2 additions & 2 deletions documentation/matio_user_guide.texi
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
@sp 0
@title
@subtitle User Manual
@subtitle for version 1.5.8
@subtitle June 2016
@subtitle for version 1.5.9
@subtitle October 2016
@author Christopher C. Hulbert
@page
@vskip 0pt plus 1filll
Expand Down
8 changes: 4 additions & 4 deletions visual_studio/matio.rc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ VS_VERSION_INFO VERSIONINFO
#else
VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
#endif
FILEVERSION 1,5,8,0
PRODUCTVERSION 1,5,8,0
FILEVERSION 1,5,9,0
PRODUCTVERSION 1,5,9,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef _DEBUG
FILEFLAGS 1
Expand All @@ -23,12 +23,12 @@ BEGIN
//language ID = U.S. English, char set = Windows, Multilingual
BEGIN
VALUE "FileDescription", "MATLAB MAT file I/O library\0"
VALUE "FileVersion", "1.5.8\0"
VALUE "FileVersion", "1.5.9\0"
VALUE "InternalName", "libmatio.dll\0"
VALUE "LegalCopyright", "(C) 2005-2016 Christopher Hulbert\0"
VALUE "OriginalFilename", "libmatio.dll\0"
VALUE "ProductName", "libmatio\0"
VALUE "ProductVersion", "1.5.8\0"
VALUE "ProductVersion", "1.5.9\0"
VALUE "Comments","\0"
END
END
Expand Down
6 changes: 3 additions & 3 deletions visual_studio/matioConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
#define PACKAGE_NAME "MATIO"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "MATIO 1.5.8"
#define PACKAGE_STRING "MATIO 1.5.9"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "matio"
Expand All @@ -239,7 +239,7 @@
#define PACKAGE_URL "http://sourceforge.net/projects/matio"

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.5.8"
#define PACKAGE_VERSION "1.5.9"

/* The size of `char', as computed by sizeof. */
#define SIZEOF_CHAR 1
Expand Down Expand Up @@ -278,7 +278,7 @@
#undef STDC_HEADERS

/* Version number of package */
#define VERSION "1.5.8"
#define VERSION "1.5.9"

/* Z prefix */
#undef Z_PREFIX
6 changes: 3 additions & 3 deletions visual_studio/matio_pubconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
#define MATIO_MINOR_VERSION 5

/* Matio release level number */
#define MATIO_RELEASE_LEVEL 8
#define MATIO_RELEASE_LEVEL 9

/* Matio version number */
#define MATIO_VERSION 158
#define MATIO_VERSION 159

/* Matio version string */
#define MATIO_VERSION_STR "1.5.8"
#define MATIO_VERSION_STR "1.5.9"

/* Default file format */
#define MAT_FT_DEFAULT MAT_FT_MAT5
Expand Down

0 comments on commit 8d156ab

Please sign in to comment.