* [ANNOUNCE] libnetfilter_queue 1.0.1 release
@ 2012-01-02 19:58 Pablo Neira Ayuso
2012-01-02 19:59 ` Pablo Neira Ayuso
2012-01-02 21:22 ` Jan Engelhardt
0 siblings, 2 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2012-01-02 19:58 UTC (permalink / raw)
To: netfilter; +Cc: netdev, netfilter-devel, netfilter-announce, lwn
Hi!
The Netfilter project proudly presents:
libnetfilter_queue 1.0.1
libnetfilter_queue is a userspace library providing an API to packets
that have been queued by the kernel packet filter.
See ChangeLog that comes attached to this email for more details.
You can download it from:
http://www.netfilter.org/projects/libnetfilter_queue/downloads.html
ftp://ftp.netfilter.org/pub/libnetfilter_queue/
Have fun!
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ANNOUNCE] libnetfilter_queue 1.0.1 release
2012-01-02 19:58 [ANNOUNCE] libnetfilter_queue 1.0.1 release Pablo Neira Ayuso
@ 2012-01-02 19:59 ` Pablo Neira Ayuso
2012-01-02 21:22 ` Jan Engelhardt
1 sibling, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2012-01-02 19:59 UTC (permalink / raw)
To: netfilter; +Cc: netdev, netfilter-devel, netfilter-announce, lwn
[-- Attachment #1: Type: text/plain, Size: 388 bytes --]
On Mon, Jan 02, 2012 at 08:58:45PM +0100, Pablo Neira Ayuso wrote:
> Hi!
>
> The Netfilter project proudly presents:
>
> libnetfilter_queue 1.0.1
>
> libnetfilter_queue is a userspace library providing an API to packets
> that have been queued by the kernel packet filter.
>
> See ChangeLog that comes attached to this email for more details.
Forgot to attach, find it here.
[-- Attachment #2: changes-libnetfilter_queue-1.0.1.txt --]
[-- Type: text/plain, Size: 1755 bytes --]
Alessandro Vesely (1):
utils: document ENOBUFS in nfqnl_test.c
Florian Westphal (2):
src: add NFQNL_MSG_VERDICT_BATCH support
src: add notes on NF_STOLEN and NF_REPEAT to documentation
Jan Engelhardt (20):
build: build: use autoconf-suggested naming of files
build: use modern call syntax for AC_INIT, AM_INIT_AUTOMAKE
build: avoid use of deprecated INCLUDES
build: use simpler autoreconf in autogen
build: run AC_CANONICAL_HOST only
build: no need for error message in PKG_CHECK_MODULES
build: set Libs.private for pkgconfig file
build: remove statements without effect
build: remove -fPIC flag
Update .gitignore
build: default to not building static libraries
build: use AC_OUTPUT
build: remove unused LIBTOOL_DEPS
build: create a Make_global.am file
build: use -Wall across the entire source
build: fix error with automake-1.9
build: fix file list warning with automake-1.9
Update .gitignore
build: use AC_CONFIG_AUX_DIR and stash away tools
build: disable implicit .tar.gz archive generation and use POSIX mode
Pablo Neira Ayuso (11):
nfq: add missing documentation on nfq_snprintf_xml()
nfq: add myself to the copyright notice
nfq: fix redundant LIBVERSION definition
license: upgrade to GPLv2+
Merge branch 'master' of git://dev.medozas.de/libnetfilter_queue
doc: document some performance tweaks for libnetfilter_queue
Merge branch 'master' of git://dev.medozas.de/libnetfilter_queue
doc: fix wrong documentation on NFQNL_COPY_NONE
build: fix `make distcheck'
build: Linux kernel-style for compilation messages
build: bump version to 1.0.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ANNOUNCE] libnetfilter_queue 1.0.1 release
2012-01-02 19:58 [ANNOUNCE] libnetfilter_queue 1.0.1 release Pablo Neira Ayuso
2012-01-02 19:59 ` Pablo Neira Ayuso
@ 2012-01-02 21:22 ` Jan Engelhardt
2012-01-02 21:40 ` Jan Engelhardt
2012-01-02 21:45 ` Pablo Neira Ayuso
1 sibling, 2 replies; 5+ messages in thread
From: Jan Engelhardt @ 2012-01-02 21:22 UTC (permalink / raw)
To: Pablo Neira Ayuso
Cc: netfilter, netdev, netfilter-devel, netfilter-announce, lwn
On Monday 2012-01-02 20:58, Pablo Neira Ayuso wrote:
>Hi!
>
>The Netfilter project proudly presents:
>
> libnetfilter_queue 1.0.1
In commit 390b0c0f45597c72fa93a40f4f7f9ffeec371f42
Author: Pablo Neira Ayuso <pablo@netfilter.org>
Date: Mon Jan 2 20:28:45 2012 +0100
build: bump version to 1.0.1
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
diff --git a/src/Makefile.am b/src/Makefile.am
index 0bd037f..bc27625 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -18,7 +18,7 @@
# set age to 0.
# </snippet>
#
-LIBVERSION=2:0:1
+LIBVERSION=2:0:2
include ${top_srcdir}/Make_global.am
You wrongly changed LIBVERSION. It went from .so.1.1 to so.0.2, and that
just does not sound right. Perhaps you intended 2:1:1.
Or just leaving r alone, like proposed? :)
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [ANNOUNCE] libnetfilter_queue 1.0.1 release
2012-01-02 21:22 ` Jan Engelhardt
@ 2012-01-02 21:40 ` Jan Engelhardt
2012-01-02 21:45 ` Pablo Neira Ayuso
1 sibling, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2012-01-02 21:40 UTC (permalink / raw)
To: Pablo Neira Ayuso
Cc: netfilter, netdev, netfilter-devel, netfilter-announce, lwn
On Monday 2012-01-02 22:22, Jan Engelhardt wrote:
>On Monday 2012-01-02 20:58, Pablo Neira Ayuso wrote:
>
>>Hi!
>>
>>The Netfilter project proudly presents:
>>
>> libnetfilter_queue 1.0.1
>
>In commit 390b0c0f45597c72fa93a40f4f7f9ffeec371f42
>Author: Pablo Neira Ayuso <pablo@netfilter.org>
>Date: Mon Jan 2 20:28:45 2012 +0100
>
> build: bump version to 1.0.1
>
> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
>
>diff --git a/src/Makefile.am b/src/Makefile.am
>index 0bd037f..bc27625 100644
>--- a/src/Makefile.am
>+++ b/src/Makefile.am
>@@ -18,7 +18,7 @@
> # set age to 0.
> # </snippet>
> #
>-LIBVERSION=2:0:1
>+LIBVERSION=2:0:2
>
> include ${top_srcdir}/Make_global.am
>
>
>You wrongly changed LIBVERSION. It went from .so.1.1 to so.0.2, and that
>just does not sound right. Perhaps you intended 2:1:1.
>
>Or just leaving r alone, like proposed? :)
Upon closer review, you ought to select 3:0:2, since you added functions
since libnetfilter_queue-1.0.0.
===
origin git://dev.medozas.de/libnetfilter_queue master
parent 390b0c0f45597c72fa93a40f4f7f9ffeec371f42 (libnetfilter_queue-1.0.1)
commit a192d817a16ba08193a90043b46b6e2cf2d05091
Author: Jan Engelhardt <jengelh@medozas.de>
Date: Mon Jan 2 22:36:03 2012 +0100
build: properly bump SO version
The last SO version update was bogus: 2:0:1 (.so.1.1.0) -> 2:0:2
(.so.0.2.0).
Since two functions were added between v1.0.0..v1.0.1, CURRENT needs
to be bumped at the least.
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
src/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index bc27625..d49e738 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -18,7 +18,7 @@
# set age to 0.
# </snippet>
#
-LIBVERSION=2:0:2
+LIBVERSION=3:0:2
include ${top_srcdir}/Make_global.am
--
# Created with git-export-patch
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [ANNOUNCE] libnetfilter_queue 1.0.1 release
2012-01-02 21:22 ` Jan Engelhardt
2012-01-02 21:40 ` Jan Engelhardt
@ 2012-01-02 21:45 ` Pablo Neira Ayuso
1 sibling, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2012-01-02 21:45 UTC (permalink / raw)
To: Jan Engelhardt
Cc: netfilter, netdev, netfilter-devel, netfilter-announce, lwn
On Mon, Jan 02, 2012 at 10:22:28PM +0100, Jan Engelhardt wrote:
> On Monday 2012-01-02 20:58, Pablo Neira Ayuso wrote:
>
> >Hi!
> >
> >The Netfilter project proudly presents:
> >
> > libnetfilter_queue 1.0.1
>
> In commit 390b0c0f45597c72fa93a40f4f7f9ffeec371f42
> Author: Pablo Neira Ayuso <pablo@netfilter.org>
> Date: Mon Jan 2 20:28:45 2012 +0100
>
> build: bump version to 1.0.1
>
> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
>
> diff --git a/src/Makefile.am b/src/Makefile.am
> index 0bd037f..bc27625 100644
> --- a/src/Makefile.am
> +++ b/src/Makefile.am
> @@ -18,7 +18,7 @@
> # set age to 0.
> # </snippet>
> #
> -LIBVERSION=2:0:1
> +LIBVERSION=2:0:2
>
> include ${top_srcdir}/Make_global.am
>
>
> You wrongly changed LIBVERSION. It went from .so.1.1 to so.0.2, and that
> just does not sound right. Perhaps you intended 2:1:1.
>
> Or just leaving r alone, like proposed? :)
I forgot to increment current, Florian Westphal added some new
interfaces. I'll fix this, sorry.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-01-02 21:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-02 19:58 [ANNOUNCE] libnetfilter_queue 1.0.1 release Pablo Neira Ayuso
2012-01-02 19:59 ` Pablo Neira Ayuso
2012-01-02 21:22 ` Jan Engelhardt
2012-01-02 21:40 ` Jan Engelhardt
2012-01-02 21:45 ` Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).