Skip to content

Commit d0f9a97

Browse files
committed
0.5.1 release
1 parent 20c53fa commit d0f9a97

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
lines changed

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ include_HEADERS = include/libfq-expbuffer.h include/libfq.h include/libfq-int.h
1313

1414
lib_LTLIBRARIES = libfq.la
1515
libfq_la_SOURCES = src/libfq.c src/fqexpbuffer.c src/fqmultibyte.c
16-
libfq_la_LDFLAGS = -release 0.5.0 -lfbclient -L$(fbclient)
16+
libfq_la_LDFLAGS = -release 0.5.1 -lfbclient -L$(fbclient)
1717

1818

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ AM_LDFLAGS = -lfbclient -L$(fbclient)
401401
include_HEADERS = include/libfq-expbuffer.h include/libfq.h include/libfq-int.h
402402
lib_LTLIBRARIES = libfq.la
403403
libfq_la_SOURCES = src/libfq.c src/fqexpbuffer.c src/fqmultibyte.c
404-
libfq_la_LDFLAGS = -release 0.5.0 -lfbclient -L$(fbclient)
404+
libfq_la_LDFLAGS = -release 0.5.1 -lfbclient -L$(fbclient)
405405
all: all-recursive
406406

407407
.SUFFIXES:

configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for libfq 0.5.0.
3+
# Generated by GNU Autoconf 2.69 for libfq 0.5.1.
44
#
55
# Report bugs to <barwick@gmail.com>.
66
#
@@ -590,8 +590,8 @@ MAKEFLAGS=
590590
# Identity of this package.
591591
PACKAGE_NAME='libfq'
592592
PACKAGE_TARNAME='libfq'
593-
PACKAGE_VERSION='0.5.0'
594-
PACKAGE_STRING='libfq 0.5.0'
593+
PACKAGE_VERSION='0.5.1'
594+
PACKAGE_STRING='libfq 0.5.1'
595595
PACKAGE_BUGREPORT='barwick@gmail.com'
596596
PACKAGE_URL=''
597597

@@ -1320,7 +1320,7 @@ if test "$ac_init_help" = "long"; then
13201320
# Omit some internal or obsolete options to make the list less imposing.
13211321
# This message is too long to be a string in the A/UX 3.1 sh.
13221322
cat <<_ACEOF
1323-
\`configure' configures libfq 0.5.0 to adapt to many kinds of systems.
1323+
\`configure' configures libfq 0.5.1 to adapt to many kinds of systems.
13241324
13251325
Usage: $0 [OPTION]... [VAR=VALUE]...
13261326
@@ -1390,7 +1390,7 @@ fi
13901390

13911391
if test -n "$ac_init_help"; then
13921392
case $ac_init_help in
1393-
short | recursive ) echo "Configuration of libfq 0.5.0:";;
1393+
short | recursive ) echo "Configuration of libfq 0.5.1:";;
13941394
esac
13951395
cat <<\_ACEOF
13961396
@@ -1505,7 +1505,7 @@ fi
15051505
test -n "$ac_init_help" && exit $ac_status
15061506
if $ac_init_version; then
15071507
cat <<\_ACEOF
1508-
libfq configure 0.5.0
1508+
libfq configure 0.5.1
15091509
generated by GNU Autoconf 2.69
15101510
15111511
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1874,7 +1874,7 @@ cat >config.log <<_ACEOF
18741874
This file contains any messages produced by compilers while
18751875
running configure, to aid debugging if configure makes a mistake.
18761876
1877-
It was created by libfq $as_me 0.5.0, which was
1877+
It was created by libfq $as_me 0.5.1, which was
18781878
generated by GNU Autoconf 2.69. Invocation command line was
18791879
18801880
$ $0 $@
@@ -2762,7 +2762,7 @@ fi
27622762

27632763
# Define the identity of the package.
27642764
PACKAGE='libfq'
2765-
VERSION='0.5.0'
2765+
VERSION='0.5.1'
27662766

27672767

27682768
cat >>confdefs.h <<_ACEOF
@@ -12729,7 +12729,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1272912729
# report actual input values of CONFIG_FILES etc. instead of their
1273012730
# values after options handling.
1273112731
ac_log="
12732-
This file was extended by libfq $as_me 0.5.0, which was
12732+
This file was extended by libfq $as_me 0.5.1, which was
1273312733
generated by GNU Autoconf 2.69. Invocation command line was
1273412734
1273512735
CONFIG_FILES = $CONFIG_FILES
@@ -12795,7 +12795,7 @@ _ACEOF
1279512795
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1279612796
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1279712797
ac_cs_version="\\
12798-
libfq config.status 0.5.0
12798+
libfq config.status 0.5.1
1279912799
configured by $0, generated by GNU Autoconf 2.69,
1280012800
with options \\"\$ac_cs_config\\"
1280112801

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# libfq - configure.ac
22

33

4-
AC_INIT([libfq], [0.5.0], [barwick@gmail.com])
4+
AC_INIT([libfq], [0.5.1], [barwick@gmail.com])
55

66
AM_MAINTAINER_MODE([disable])
77

include/libfq-version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#define LIBFQ_VERSION_STRING "0.5.0"
2-
#define LIBFQ_VERSION_NUMBER 500
1+
#define LIBFQ_VERSION_STRING "0.5.1"
2+
#define LIBFQ_VERSION_NUMBER 501

packaging/redhat/libfq.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: A wrapper library for the Firebird C API
22
Name: libfq
3-
Version: 0.5.0
3+
Version: 0.5.1
44
Release: 1
55
Source: libfq-%{version}.tar.gz
66
URL: https://github.com/ibarwick/libfq
@@ -40,6 +40,8 @@ rm -rf $RPM_BUILD_ROOT
4040
/usr/include/libfq.h
4141

4242
%changelog
43+
* Sat Apr 27 2024 Ian Barwick (barwick@gmail.com)
44+
- libfq 0.5.1
4345
* Wed Dec 28 2022 Ian Barwick (barwick@gmail.com)
4446
- libfq 0.5.0
4547
* Sun Feb 20 2022 Ian Barwick (barwick@gmail.com)

0 commit comments

Comments
 (0)