From cee7e4f522aeacfc26e5a176f70b98f87b7b5d24 Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Tue, 5 Mar 2024 17:52:49 +0100 Subject: [PATCH] Release 1.3.3 Changes since 1.3.2 from 2023-10-07: Fix build failure for TestMain in black box test package, see https://github.com/rillig/gobco/issues/32. Fix instrumentation of types based on bool, see https://github.com/rillig/gobco/issues/35. --- main.go | 2 -- version.go | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 version.go diff --git a/main.go b/main.go index d03e634..300c3ca 100644 --- a/main.go +++ b/main.go @@ -13,8 +13,6 @@ import ( "strings" ) -const version = "1.3.3-snapshot" - var exit = os.Exit func main() { diff --git a/version.go b/version.go new file mode 100644 index 0000000..dd523d8 --- /dev/null +++ b/version.go @@ -0,0 +1,3 @@ +package main + +const version = "1.3.3"