From 97a5e99c6b56d70bc957e35dff11f0dd1182ffbd Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Sat, 22 Jun 2013 20:34:02 +0600 Subject: [PATCH] Updated version --- CHANGELOG.md | 6 ++++++ gor.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2153e13..95405df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +v0.3.3 - 22 Jun 2013 +* Using TCP instead of UDP for communication between Listener and Replay +* Significally improved performance +* Fixed bugs causing locking and message droping (concurrency issues) +* Rewrote concurrency model to use more channels + v0.3 - 10 Jun 2013 * Use RAW_SOCKETS instead of tcpdump * Own TCP stack diff --git a/gor.go b/gor.go index 46bca07..f7f6809 100644 --- a/gor.go +++ b/gor.go @@ -17,7 +17,7 @@ import ( ) const ( - VERSION = "0.3.2" + VERSION = "0.3.3" ) var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file")