Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.6 #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading