From b01a19adbef0a847cc33139ad747ed6a3f0f22d2 Mon Sep 17 00:00:00 2001 From: Daniel Oaks Date: Sat, 30 Dec 2017 00:18:55 +1000 Subject: [PATCH] Release v0.2.1 --- CHANGELOG.md | 7 +++++++ lib/constants.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73cd07f..0daea08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to ircdog will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). For the purposes of versioning, we consider the "public API" to refer to the configuration files and CLI. +## [0.2.1] - 2017-12-29 +Fix for a silly bug. Guess I should add some proper tests at some point! + +### Fixed +* Fixed a locking bug that meant the `--listen` functionality was totally broken! Thanks [@jwheare](https://github.com/jwheare) for finding this bug! + + ## [0.2.0] - 2017-12-29 More formatting codes! Easier to see CTCP delimiters! Hiding messages and snooping on traffic! diff --git a/lib/constants.go b/lib/constants.go index 76a24a7..f2d4132 100644 --- a/lib/constants.go +++ b/lib/constants.go @@ -5,5 +5,5 @@ package lib const ( // SemVer is the semantic version of this program - SemVer = "0.2.0" + SemVer = "0.2.1" )