Skip to content

Commit

Permalink
Bump version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hack3ric committed Nov 23, 2024
1 parent 4cba83a commit 03a4c4f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for Mimic

## 0.6.1 (2024-11-23)

- Debian packaging fixes regarding DKMS

## 0.6.0 (2024-11-02)

- 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
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
mimic (0.6.1-1) UNRELEASED; urgency=medium

* New upstream release.
* Fix DKMS packaging issues

-- Eric Long <i@hack3r.moe> Sat, 23 Nov 2024 17:49:33 +0800

mimic (0.6.0-1) unstable; urgency=medium

* New upstream release.
Expand Down
2 changes: 1 addition & 1 deletion kmod/AKMBUILD.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modname=mimic
modver=0.6.0
modver=0.6.1
built_modules="$modname.ko"

build() {
Expand Down
2 changes: 1 addition & 1 deletion kmod/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ clean:
dkms.conf: dkms.conf.in
sed $^ \
-e 's|@@EXTRA_OPTS@@|CHECKSUM_HACK=$(CHECKSUM_HACK)|' \
-e 's|#MODULE_VERSION#|0.6.0|'> $@
-e 's|#MODULE_VERSION#|0.6.1|'> $@
AKMBUILD: AKMBUILD.in
sed 's|@@EXTRA_OPTS@@|CHECKSUM_HACK=$(CHECKSUM_HACK)|' $^ > $@
2 changes: 1 addition & 1 deletion kmod/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "csum-hack.h"

MODULE_VERSION("0.6.0");
MODULE_VERSION("0.6.1");
MODULE_DESCRIPTION("eBPF TCP -> UDP obfuscator - kernel module extension");
MODULE_LICENSE("GPL");

Expand Down
2 changes: 1 addition & 1 deletion src/args.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "log.h"
#include "main.h"

const char* argp_program_version = "0.6.0";
const char* argp_program_version = "0.6.1";
const char* argp_program_bug_address = "https://github.com/hack3ric/mimic/issues";

/* mimic (global options) */
Expand Down

0 comments on commit 03a4c4f

Please sign in to comment.