summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-06-13 16:21:59 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-06-13 16:22:16 +0200
commit6b3b1c3b918fcb9bbf1d876ad6d58c38932a2469 (patch)
tree5dfe02a2e91a309a1249cc3db24e471938402a1b
parentSupport IPv6-less kernels (diff)
downloadwireguard-go-0.0.20180613.tar.xz
wireguard-go-0.0.20180613.zip
version: bump snapshot0.0.20180613
-rw-r--r--Makefile2
-rw-r--r--version.go2
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index af2f542..e10fdc2 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,8 @@ BINDIR ?= $(PREFIX)/bin
ifeq ($(shell go env GOOS),linux)
ifeq ($(wildcard .git),)
$(error Do not build this for Linux. Instead use the Linux kernel module. See wireguard.com/install/ for more info.)
+else
+$(shell printf 'package main\nconst UseTheKernelModuleInstead = 0xdeadbabe\n' > ireallywantobuildon_linux.go)
endif
endif
diff --git a/version.go b/version.go
index ca61b5c..cd8dab6 100644
--- a/version.go
+++ b/version.go
@@ -1,2 +1,2 @@
package main
-const WireGuardGoVersion = "0.0.20180531"
+const WireGuardGoVersion = "0.0.20180613"