Skip to content

Commit 1cc625e

Browse files
committed
0.7.0 release
1 parent b22ae56 commit 1cc625e

File tree

6 files changed

+39
-10
lines changed

6 files changed

+39
-10
lines changed

ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2025-09-04 Dustin Lundquist <dustin@null-ptr.net>
2+
0.7.0 Release
3+
4+
* Deprecate project
5+
* Cleanup autoconf
6+
* Require autoconf 2.71
7+
* Require explicit --enable-dns for DNS resolution functionality
8+
* Add support for libpcre2 as an alternative to the older libpcre3
9+
* Relax HTTP header parsing to accept CRLF or plain LF
10+
* Fix missing stdlib.h include
11+
* Fix various warnings reported by gcc 14 and clang 19 compilers
12+
113
2023-03-16 Dustin Lundquist <dustin@null-ptr.net>
214
0.6.1 Release
315

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ For Debian or Fedora based Linux distributions see building packages below.
6363

6464
**Install**
6565

66-
./autogen.sh && ./checonfigure --enable-dns && make check && sudo make install
66+
./autogen.sh && ./configure --enable-dns && make check && sudo make install
6767

6868
**Building Debian/Ubuntu package**
6969

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.71])
5-
AC_INIT([sniproxy],[0.6.1])
5+
AC_INIT([sniproxy],[0.7.0])
66
AM_INIT_AUTOMAKE([subdir-objects])
77
AM_SILENT_RULES([yes])
88
AC_USE_SYSTEM_EXTENSIONS

debian/changelog

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
sniproxy (0.6.1) UNRELEASED; urgency=medium
2-
3-
* New git revision
4-
5-
-- Dustin Lundquist <dustin@m3-debian12.overthere.org> Thu, 14 Dec 2023 09:40:47 -0800
1+
sniproxy (0.7.0) unstable; urgency=medium
2+
3+
* Deprecate project
4+
* Cleanup autoconf
5+
* Require autoconf 2.71
6+
* Require explicit --enable-dns for DNS resolution functionality
7+
* Add support for libpcre2 as an alternative to the older libpcre3
8+
* Relax HTTP header parsing to accept CRLF or plain LF
9+
* Fix missing stdlib.h include
10+
* Fix various warnings reported by gcc 14 and clang 19 compilers
11+
12+
-- Dustin Lundquist <dustin@null-ptr.net> Thu, 04 Sep 2025 16:37:25 -0700
613

714
sniproxy (0.6.1) unstable; urgency=high
815

redhat/sniproxy.spec

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: sniproxy
2-
Version: 0.6.1
2+
Version: 0.7.0
33
Release: 1%{?dist}
44
Summary: Transparent TLS and HTTP layer 4 proxy with SNI support
55

@@ -46,7 +46,17 @@ rm -rf $RPM_BUILD_ROOT
4646

4747

4848
%changelog
49-
* Thu Mar 16 2023 Dustin Lundquist <dustin@null-ptr.net 0.6.1-1
49+
* Thu Sep 4 2024 Dustin Lundquist <dustin@null-ptr.net> 0.7.0-1
50+
- Deprecate project
51+
- Cleanup autoconf
52+
- Require autoconf 2.71
53+
- Require explicit --enable-dns for DNS resolution functionality
54+
- Add support for libpcre2 as an alternative to the older libpcre3
55+
- Relax HTTP header parsing to accept CRLF or plain LF
56+
- Fix missing stdlib.h include
57+
- Fix various warnings reported by gcc 14 and clang 19 compilers
58+
59+
* Thu Mar 16 2023 Dustin Lundquist <dustin@null-ptr.net> 0.6.1-1
5060
- Fix buffer overflow in address module
5161
- Fix tests
5262

setver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
VERSION=0.6.1
3+
VERSION=0.7.0
44

55
SOURCE_DIR=$(dirname $0)
66
GIT_DIR=${SOURCE_DIR}/.git

0 commit comments

Comments
 (0)