Skip to content

Commit

Permalink
0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dlundquist committed Dec 6, 2018
1 parent 10ddfbf commit fc5f90d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 3 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2018-12-05 Dustin Lundquist <[email protected]>
0.6.0 Release

* PROXY v1 protocol support
* SO_REUSEPORT support on Linux 3.9 and later
* Listener ipv6_only directive to accept only IPv6 connections
* TCP keepalive

2017-04-26 Dustin Lundquist <[email protected]>
0.5.0 Release

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.60])
AC_INIT([sniproxy], [0.5.0])
AC_INIT([sniproxy], [0.6.0])
AC_CONFIG_SRCDIR([src/sniproxy.c])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([subdir-objects])
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
sniproxy (0.6.0) unstable; urgency=medium

* PROXY v1 protocol support
* SO_REUSEPORT support on Linux 3.9 and later
* Listener ipv6_only directive to accept only IPv6 connections
* TCP keepalive

-- Dustin Lundquist <[email protected]> Wed, 05 Dec 2018 20:12:24 -0800

sniproxy (0.5.0) unstable; urgency=medium

* Transparent proxy support
Expand Down
8 changes: 7 additions & 1 deletion redhat/sniproxy.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: sniproxy
Version: 0.5.0
Version: 0.6.0
Release: 1%{?dist}
Summary: Transparent TLS and HTTP layer 4 proxy with SNI support

Expand Down Expand Up @@ -46,6 +46,12 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Wed Dec 5 2018 Dustin Lundquist <[email protected]> 0.6.0-1
- PROXY v1 protocol support
- SO_REUSEPORT support on Linux 3.9 and later
- Listener ipv6_only directive to accept only IPv6 connections
- TCP keepalive

* Wed Apr 26 2017 Dustin Lundquist <[email protected]> 0.5.0-1
- Transparent proxy support
- Use accept4() on Linix
Expand Down
2 changes: 1 addition & 1 deletion setver.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VERSION=0.5.0
VERSION=0.6.0

SOURCE_DIR=$(dirname $0)
GIT_DIR=${SOURCE_DIR}/.git
Expand Down

0 comments on commit fc5f90d

Please sign in to comment.