Skip to content

Commit

Permalink
Release 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mywave82 committed Jul 12, 2024
1 parent c62b5ba commit a86fdd1
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 8 deletions.
28 changes: 28 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,32 @@
2024-07-09 22:15 mywave82

* ChangeLog: Release 1.6

2024-02-05 10:36 mnhauke

* When compiling shared library with mingw, LD needs parameter "-no-undefined"

2023-10-07 00:22 mywave82

* Put m4 macro files inside m4 directory when possible
* Enable maintainer-mode by default in ./configure.
* `autoupdate` to update deprecated macros in configure.ac

2022-04-30 21:29 mywave82

* Fix some compiler warnings (g++ version 11.2.0 used for testing)

2020-11-17 02:32 miller-alex
* Don't convert string constants to char *
* Remove useless const on binio::detect_system_flags() return type

2020-07-25 24:08 cxong

* Add CMake files

2019-08-07 15:58 malvineous

* ChangeLog: Release 1.5
* Fix off-by-one error in memory stream.
* Move from SourceForge to GitHub.
* Documentation updates and support for more build environments.
Expand Down
4 changes: 2 additions & 2 deletions Makefile.bt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ AUX = doc\*.texi README AUTHORS NEWS COPYING TODO ChangeLog
DIST = src\*.cpp src\*.h src\binio.h.in src\Makefile.bt $(AUX) INSTALL
BINARYDIST = src\*.h src\binio.lib $(AUX)

distfile = binio13s.zip
binarydistfile = binio13.zip
distfile = binio16s.zip
binarydistfile = binio16.zip
installfile = INSTALL.dos
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
This is a brief overview of user-visible changes in libbinio.

Changes for version 1.6:
------------------------
- Updates in autoconf files
- Added initial support for CMake
- Fix various warnings in the code
- Fix building shared library with mingw

Changes for version 1.5:
------------------------
- Fix off-by-one error in memory streams.
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.5.{build}
version: 1.6.{build}
image: Visual Studio 2017

install:
Expand Down
2 changes: 1 addition & 1 deletion binio.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%define name binio
%define version 1.5
%define version 1.6
%define release 1

Summary: Binary I/O stream class library
Expand Down
2 changes: 1 addition & 1 deletion binio_mdk.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%define name binio
%define version 1.4
%define version 1.6
%define release 1mdk
%define libname %mklibname %name 1

Expand Down
5 changes: 4 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
AC_INIT([binio],[1.5],[[email protected]],[libbinio])
AC_INIT([binio],[1.6],[[email protected]],[libbinio])
# Version used for SO/DLL file(s). See https://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
AC_SUBST([VERSION_INFO],"1:0:0")

AC_CONFIG_SRCDIR(src/binio.cpp)
AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile src/binio.h libbinio.pc])
AC_CONFIG_MACRO_DIRS([m4])
Expand Down
2 changes: 1 addition & 1 deletion libbinio.qpg
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<QPM:ProductDescriptionEmbedURL/>
</QPM:ProductDescription>
<QPM:ReleaseDescription>
<QPM:ReleaseVersion>1.5</QPM:ReleaseVersion>
<QPM:ReleaseVersion>1.6</QPM:ReleaseVersion>
<QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency>
<QPM:ReleaseStability>Stable</QPM:ReleaseStability>
<QPM:ReleaseNoteMinor/>
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lib_LTLIBRARIES = libbinio.la

libbinio_la_SOURCES = binio.cpp binfile.cpp binwrap.cpp binstr.cpp

libbinio_la_LDFLAGS = -version-info 1:0:0
libbinio_la_LDFLAGS = -version-info @VERSION_INFO@
libbinio_la_LDFLAGS += -no-undefined # mingw requires this when making shared DLL files

pkginclude_HEADERS = binio.h binfile.h binwrap.h binstr.h
Expand Down

0 comments on commit a86fdd1

Please sign in to comment.