From 2fdc9e5941faaf227f387fe1940c6affcd6d0390 Mon Sep 17 00:00:00 2001 From: Daniel Oaks Date: Sun, 18 Sep 2016 09:15:23 +1000 Subject: [PATCH] Release v0.1.0 --- CHANGELOG.md | 2 +- irc/constants.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3d0a308..a11edabd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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 +## [0.1.0] - 2016-09-18 Initial release of Oragono! ### Security diff --git a/irc/constants.go b/irc/constants.go index d15a2c00..19b49575 100644 --- a/irc/constants.go +++ b/irc/constants.go @@ -8,7 +8,7 @@ package irc import "fmt" const ( - SEM_VER = "0.1.0-unreleased" + SEM_VER = "0.1.0" CRLF = "\r\n" MAX_REPLY_LEN = 512 - len(CRLF) )