Skip to content

Commit 03a4c4f

Browse files
committed
Bump version to 0.6.1
1 parent 4cba83a commit 03a4c4f

File tree

6 files changed

+15
-4
lines changed

6 files changed

+15
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog for Mimic
22

3+
## 0.6.1 (2024-11-23)
4+
5+
- Debian packaging fixes regarding DKMS
6+
37
## 0.6.0 (2024-11-02)
48

59
- Do not depend on bpf_xdp_get_buff_len for payload length; this could be larger than the actual packet length, and the real length should be retrieved from packet headers

debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
mimic (0.6.1-1) UNRELEASED; urgency=medium
2+
3+
* New upstream release.
4+
* Fix DKMS packaging issues
5+
6+
-- Eric Long <[email protected]> Sat, 23 Nov 2024 17:49:33 +0800
7+
18
mimic (0.6.0-1) unstable; urgency=medium
29

310
* New upstream release.

kmod/AKMBUILD.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
modname=mimic
2-
modver=0.6.0
2+
modver=0.6.1
33
built_modules="$modname.ko"
44

55
build() {

kmod/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@ clean:
8787
dkms.conf: dkms.conf.in
8888
sed $^ \
8989
-e 's|@@EXTRA_OPTS@@|CHECKSUM_HACK=$(CHECKSUM_HACK)|' \
90-
-e 's|#MODULE_VERSION#|0.6.0|'> $@
90+
-e 's|#MODULE_VERSION#|0.6.1|'> $@
9191
AKMBUILD: AKMBUILD.in
9292
sed 's|@@EXTRA_OPTS@@|CHECKSUM_HACK=$(CHECKSUM_HACK)|' $^ > $@

kmod/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include "csum-hack.h"
44

5-
MODULE_VERSION("0.6.0");
5+
MODULE_VERSION("0.6.1");
66
MODULE_DESCRIPTION("eBPF TCP -> UDP obfuscator - kernel module extension");
77
MODULE_LICENSE("GPL");
88

src/args.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "log.h"
88
#include "main.h"
99

10-
const char* argp_program_version = "0.6.0";
10+
const char* argp_program_version = "0.6.1";
1111
const char* argp_program_bug_address = "https://github.com/hack3ric/mimic/issues";
1212

1313
/* mimic (global options) */

0 commit comments

Comments
 (0)