Skip to content

Commit

Permalink
Bump version and NEWS for v1.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeu committed Feb 14, 2017
1 parent e57c66f commit 8b44851
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ after_success:
- if [[ "$COVERITY_SCAN_BRANCH" != 1 ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CC" == "gcc-4.8" ]] && [[ "$HDF5_VERSION_DIR" == "hdf5_1_8_18" ]] && [[ "$ENABLE_MAT73" == "yes" ]] && [[ "$ENABLE_EXTENDED_SPARSE" == "yes" ]] && [[ "$WITH_ZLIB" == "yes" ]]; then make pdf; fi
- if [[ "$COVERITY_SCAN_BRANCH" != 1 ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CC" == "gcc-4.8" ]] && [[ "$HDF5_VERSION_DIR" == "hdf5_1_8_18" ]] && [[ "$ENABLE_MAT73" == "yes" ]] && [[ "$ENABLE_EXTENDED_SPARSE" == "yes" ]] && [[ "$WITH_ZLIB" == "yes" ]]; then make dist-gzip; fi
- if [[ "$COVERITY_SCAN_BRANCH" != 1 ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CC" == "gcc-4.8" ]] && [[ "$HDF5_VERSION_DIR" == "hdf5_1_8_18" ]] && [[ "$ENABLE_MAT73" == "yes" ]] && [[ "$ENABLE_EXTENDED_SPARSE" == "yes" ]] && [[ "$WITH_ZLIB" == "yes" ]]; then sh ./upload-to-bitbucket.sh tbeu $BBPASS /tbeu/downloads/downloads ./documentation/matio_user_guide.pdf; fi
- if [[ "$COVERITY_SCAN_BRANCH" != 1 ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CC" == "gcc-4.8" ]] && [[ "$HDF5_VERSION_DIR" == "hdf5_1_8_18" ]] && [[ "$ENABLE_MAT73" == "yes" ]] && [[ "$ENABLE_EXTENDED_SPARSE" == "yes" ]] && [[ "$WITH_ZLIB" == "yes" ]]; then sh ./upload-to-bitbucket.sh tbeu $BBPASS /tbeu/downloads/downloads ./matio-1.5.9.tar.gz; fi
- if [[ "$COVERITY_SCAN_BRANCH" != 1 ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CC" == "gcc-4.8" ]] && [[ "$HDF5_VERSION_DIR" == "hdf5_1_8_18" ]] && [[ "$ENABLE_MAT73" == "yes" ]] && [[ "$ENABLE_EXTENDED_SPARSE" == "yes" ]] && [[ "$WITH_ZLIB" == "yes" ]]; then sh ./upload-to-bitbucket.sh tbeu $BBPASS /tbeu/downloads/downloads ./matio-1.5.10.tar.gz; fi

notifications:
email: false
Expand Down
9 changes: 8 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Changes in 1.5.10 (14 February 2017)
* Added new API function Mat_GetDir to retrieve all variable names of a MAT file
* Fixed performance of repeated calls to Mat_VarWrite (broken by v1.5.7)
* Fixed bugs reading (hyperslabs of) numeric arrays where the variable data type
differs from the desired output data type
* Increased testsuite coverage

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
Expand Down Expand Up @@ -109,7 +116,7 @@ Changes in 1.3.2 (28 October 2006)
* Added support for writing compressed character classes, structures, cell arrays, and sparse arrays
* Added some tests to the test_mat program: write_compressed_cell, write_compressed_sparse
* Added 64-bit signed/unsigned integer support
* Fixed bugs in Reading slabs of N-dimensional data
* Fixed bugs in reading slabs of N-dimensional data

Changes in 1.3.1 (7 September 2006)
* Added some internal documentation to the library
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.9],[chulbe2lsu@users.sourceforge.net],[],
AC_INIT([MATIO],[1.5.10],[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],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_DEFINE_UNQUOTED([MATIO_RELEASE_LEVEL],10,[Matio release level number])
AC_DEFINE_UNQUOTED([MATIO_VERSION],1510,[Matio version number])
PACKAGE_RELEASE_DATE="14 February 2017"
AC_DEFINE_UNQUOTED([MATIO_VERSION_STR],"1.5.10",[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.9
@subtitle October 2016
@subtitle for version 1.5.10
@subtitle February 2017
@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,9,0
PRODUCTVERSION 1,5,9,0
FILEVERSION 1,5,10,0
PRODUCTVERSION 1,5,10,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.9\0"
VALUE "FileVersion", "1.5.10\0"
VALUE "InternalName", "libmatio.dll\0"
VALUE "LegalCopyright", "(C) 2005-2017 Christopher Hulbert\0"
VALUE "OriginalFilename", "libmatio.dll\0"
VALUE "ProductName", "libmatio\0"
VALUE "ProductVersion", "1.5.9\0"
VALUE "ProductVersion", "1.5.10\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.9"
#define PACKAGE_STRING "MATIO 1.5.10"

/* 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.9"
#define PACKAGE_VERSION "1.5.10"

/* 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.9"
#define VERSION "1.5.10"

/* 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 9
#define MATIO_RELEASE_LEVEL 10

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

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

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

0 comments on commit 8b44851

Please sign in to comment.