From 0e78a11b64ee0313eb60f5adab5140cdb976b8a1 Mon Sep 17 00:00:00 2001 From: Alberto Leiva Popper Date: Tue, 20 Aug 2019 12:12:11 -0500 Subject: [PATCH] updates for release 4.0.5 --- configure.ac | 4 ++-- docs/en/download.md | 1 + docs/en/intro-jool.md | 3 ++- src/common/xlat.h | 2 +- src/usr/iptables/Makefile | 2 +- src/usr/nat64/jool.8 | 2 +- src/usr/siit/jool_siit.8 | 2 +- 7 files changed, 9 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index ce70cb253..b92cd05e7 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.68]) -AC_INIT([Jool], [4.0.4], [jool@nic.mx]) +AC_INIT([Jool], [4.0.5], [jool@nic.mx]) AC_CONFIG_SRCDIR([src/common/xlat.h]) AM_INIT_AUTOMAKE([subdir-objects]) @@ -13,7 +13,7 @@ AC_PROG_CC # If you need it to inherit more warnings, you will have to add them manually # for now. AS_IF([test "$GCC" = "yes"], - [WARNINGCFLAGS="-Wall -pedantic"], + [WARNINGCFLAGS="-Wall -pedantic -std=gnu11"], [WARNINGCFLAGS=""]) AC_SUBST([WARNINGCFLAGS]) diff --git a/docs/en/download.md b/docs/en/download.md index c794a239a..e0134e9c9 100644 --- a/docs/en/download.md +++ b/docs/en/download.md @@ -39,6 +39,7 @@ Transitional packages: | Release Date | Version | .tar.gz | Signature | Git commit | |--------------|---------|---------|-----------|------------| +| 2019-08-20 | 4.0.5 | [Download]({{ site.downloads-url-2 }}/v4.0.5/jool-4.0.5.tar.gz) | [Signature]({{ site.downloads-url-2 }}/v4.0.5/jool-4.0.5.tar.gz.asc) | Link | | 2019-07-31 | 4.0.4 | [Download]({{ site.downloads-url-2 }}/v4.0.4/jool-4.0.4.tar.gz) | [Signature]({{ site.downloads-url-2 }}/v4.0.4/jool-4.0.4.tar.gz.asc) | Link | | 2019-07-19 | 4.0.3 | [Download]({{ site.downloads-url-2 }}/v4.0.3/jool-4.0.3.tar.gz) | [Signature]({{ site.downloads-url-2 }}/v4.0.3/jool-4.0.3.tar.gz.asc) | Link | | 2019-07-11 | 4.0.2 | [Download]({{ site.downloads-url-2 }}/v4.0.2/jool-4.0.2.tar.gz) | [Signature]({{ site.downloads-url-2 }}/v4.0.2/jool-4.0.2.tar.gz.asc) | Link | diff --git a/docs/en/intro-jool.md b/docs/en/intro-jool.md index f6446e94b..880777fd2 100644 --- a/docs/en/intro-jool.md +++ b/docs/en/intro-jool.md @@ -45,7 +45,8 @@ Please [let us know]({{ site.repository-url }}/issues) if you find additional co | Jool version | Supported Linux kernels (mainline) | Supported Linux kernels (RHEL) | |-------------------------------------|--------------------------------------|--------------------------------| -| [master]({{ site.repository-url }}) | 3.13 - 3.19
4.0 - 4.20
5.0-5.3 | RHEL 7.0 - RHEL 7.5 | +| [master]({{ site.repository-url }}) | 3.13 - 3.19
4.0 - 4.20
5.0-5.3 | RHEL 7.0 - RHEL 7.6 | +| [4.0.5](download.html#40x) | 3.13 - 3.19
4.0 - 4.20
5.0-5.3 | RHEL 7.0 - RHEL 7.6 | | [4.0.1](download.html#40x) | 3.13 - 3.19
4.0 - 4.20
5.0 | RHEL 7.0 - RHEL 7.5 | | [3.5.8](download.html#35x) | 3.2 - 3.19
4.0 - 4.18 | RHEL 7.0 - RHEL 7.4 | diff --git a/src/common/xlat.h b/src/common/xlat.h index 594c020c8..9b375cfdb 100644 --- a/src/common/xlat.h +++ b/src/common/xlat.h @@ -14,7 +14,7 @@ */ #define JOOL_VERSION_MAJOR 4 #define JOOL_VERSION_MINOR 0 -#define JOOL_VERSION_REV 4 +#define JOOL_VERSION_REV 5 #define JOOL_VERSION_DEV 0 /** See http://stackoverflow.com/questions/195975 */ diff --git a/src/usr/iptables/Makefile b/src/usr/iptables/Makefile index 7e5f70d3c..342235d5c 100644 --- a/src/usr/iptables/Makefile +++ b/src/usr/iptables/Makefile @@ -18,7 +18,7 @@ # https://www.gnu.org/software/libtool/manual/libtool.html # TODO But I mean, I should probably read it anyway. -DEFAULT_CFLAGS = -Wall -pedantic -O2 +DEFAULT_CFLAGS = -Wall -pedantic -std=gnu11 -O2 DEFAULT_CFLAGS += -I../.. DEFAULT_CFLAGS += $(shell pkg-config xtables --cflags) diff --git a/src/usr/nat64/jool.8 b/src/usr/nat64/jool.8 index a67c01122..b967dab6e 100644 --- a/src/usr/nat64/jool.8 +++ b/src/usr/nat64/jool.8 @@ -1,7 +1,7 @@ .\" Manpage for jool's userspace app. .\" Report bugs to jool@nic.mx. -.TH jool 8 2019-07-31 v4.0.4 "NAT64 Jool's Userspace Client" +.TH jool 8 2019-08-20 v4.0.5 "NAT64 Jool's Userspace Client" .SH NAME jool - Interact with NAT64 Jool (the kernel module). diff --git a/src/usr/siit/jool_siit.8 b/src/usr/siit/jool_siit.8 index 518249d4e..b124c3425 100644 --- a/src/usr/siit/jool_siit.8 +++ b/src/usr/siit/jool_siit.8 @@ -1,7 +1,7 @@ .\" Manpage for jool's userspace app. .\" Report bugs to jool@nic.mx. -.TH jool_siit 8 2019-07-31 v4.0.4 "SIIT Jool's Userspace Client" +.TH jool_siit 8 2019-08-20 v4.0.5 "SIIT Jool's Userspace Client" .SH NAME jool_siit - Interact with SIIT Jool (the kernel module).