From 88ce999b523fb138e02487f91704edf53eaa8ffc Mon Sep 17 00:00:00 2001 From: Daniel Oaks Date: Sun, 18 Sep 2016 11:48:41 +1000 Subject: [PATCH] Rename things for next version --- CHANGELOG.md | 16 ++++++++++++++++ irc/constants.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a11edabd..43e4c4b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to Oragono 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, CLI interface and database format. +## Unreleased +The next release of Oragono! + +Improved compatibility, more features, etc. + +### Security + +### Added + +### Changed + +### Removed + +### Fixed + + ## [0.1.0] - 2016-09-18 Initial release of Oragono! diff --git a/irc/constants.go b/irc/constants.go index 19b49575..49abdd4c 100644 --- a/irc/constants.go +++ b/irc/constants.go @@ -8,7 +8,7 @@ package irc import "fmt" const ( - SEM_VER = "0.1.0" + SEM_VER = "0.2.0-unreleased" CRLF = "\r\n" MAX_REPLY_LEN = 512 - len(CRLF) )