3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 14:09:28 +01:00

version: Clarify semantic versioning "public API" and reset ver number on Oragono

This commit is contained in:
Daniel Oaks 2016-04-14 15:31:51 +10:00
parent 7b35ea6361
commit 63f5f34f28
3 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,7 @@
# Changelog
All notable changes to Oragono will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
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

View File

@ -1,5 +1,7 @@
Oragono is a very early, extremely experimental fork of the [Ergonomadic](https://github.com/edmund-huber/ergonomadic) IRC daemon. Ergonomadic looks cool, and this is something I can experiment on. Hopefully most of the stuff I do in this can be merged back into Ergonomadic! Also see the [mammon](https://github.com/mammon-ircd/mammon) IRC daemon for something similar written in Python.
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.
# Features
* UTF-8 nick and channel names

View File

@ -1,7 +1,7 @@
package irc
const (
SEM_VER = "oragono-1.4.4"
SEM_VER = "oragono-0.1.0-unreleased"
CRLF = "\r\n"
MAX_REPLY_LEN = 512 - len(CRLF)