Skip to content

Commit a86fdd1

Browse files
committed
Release 1.6
1 parent c62b5ba commit a86fdd1

File tree

9 files changed

+46
-8
lines changed

9 files changed

+46
-8
lines changed

ChangeLog

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
1+
2024-07-09 22:15 mywave82
2+
3+
* ChangeLog: Release 1.6
4+
5+
2024-02-05 10:36 mnhauke
6+
7+
* When compiling shared library with mingw, LD needs parameter "-no-undefined"
8+
9+
2023-10-07 00:22 mywave82
10+
11+
* Put m4 macro files inside m4 directory when possible
12+
* Enable maintainer-mode by default in ./configure.
13+
* `autoupdate` to update deprecated macros in configure.ac
14+
15+
2022-04-30 21:29 mywave82
16+
17+
* Fix some compiler warnings (g++ version 11.2.0 used for testing)
18+
19+
2020-11-17 02:32 miller-alex
20+
* Don't convert string constants to char *
21+
* Remove useless const on binio::detect_system_flags() return type
22+
23+
2020-07-25 24:08 cxong
24+
25+
* Add CMake files
26+
127
2019-08-07 15:58 malvineous
28+
29+
* ChangeLog: Release 1.5
230
* Fix off-by-one error in memory stream.
331
* Move from SourceForge to GitHub.
432
* Documentation updates and support for more build environments.

Makefile.bt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ AUX = doc\*.texi README AUTHORS NEWS COPYING TODO ChangeLog
77
DIST = src\*.cpp src\*.h src\binio.h.in src\Makefile.bt $(AUX) INSTALL
88
BINARYDIST = src\*.h src\binio.lib $(AUX)
99

10-
distfile = binio13s.zip
11-
binarydistfile = binio13.zip
10+
distfile = binio16s.zip
11+
binarydistfile = binio16.zip
1212
installfile = INSTALL.dos

NEWS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
This is a brief overview of user-visible changes in libbinio.
22

3+
Changes for version 1.6:
4+
------------------------
5+
- Updates in autoconf files
6+
- Added initial support for CMake
7+
- Fix various warnings in the code
8+
- Fix building shared library with mingw
9+
310
Changes for version 1.5:
411
------------------------
512
- Fix off-by-one error in memory streams.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.5.{build}
1+
version: 1.6.{build}
22
image: Visual Studio 2017
33

44
install:

binio.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%define name binio
2-
%define version 1.5
2+
%define version 1.6
33
%define release 1
44

55
Summary: Binary I/O stream class library

binio_mdk.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%define name binio
2-
%define version 1.4
2+
%define version 1.6
33
%define release 1mdk
44
%define libname %mklibname %name 1
55

configure.ac

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
AC_INIT([binio],[1.5],[[email protected]],[libbinio])
1+
AC_INIT([binio],[1.6],[[email protected]],[libbinio])
2+
# Version used for SO/DLL file(s). See https://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
3+
AC_SUBST([VERSION_INFO],"1:0:0")
4+
25
AC_CONFIG_SRCDIR(src/binio.cpp)
36
AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile src/binio.h libbinio.pc])
47
AC_CONFIG_MACRO_DIRS([m4])

libbinio.qpg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<QPM:ProductDescriptionEmbedURL/>
7676
</QPM:ProductDescription>
7777
<QPM:ReleaseDescription>
78-
<QPM:ReleaseVersion>1.5</QPM:ReleaseVersion>
78+
<QPM:ReleaseVersion>1.6</QPM:ReleaseVersion>
7979
<QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency>
8080
<QPM:ReleaseStability>Stable</QPM:ReleaseStability>
8181
<QPM:ReleaseNoteMinor/>

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lib_LTLIBRARIES = libbinio.la
22

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

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

88
pkginclude_HEADERS = binio.h binfile.h binwrap.h binstr.h

0 commit comments

Comments
 (0)