Browse Source

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

tags/v0.1.0
Daniel Oaks 8 years ago
parent
commit
63f5f34f28
3 changed files with 5 additions and 2 deletions
  1. 2
    1
      CHANGELOG.md
  2. 2
    0
      README.md
  3. 1
    1
      irc/constants.go

+ 2
- 1
CHANGELOG.md View File

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

+ 2
- 0
README.md View File

@@ -1,5 +1,7 @@
1 1
 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.
2 2
 
3
+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.
4
+
3 5
 # Features
4 6
 
5 7
 * UTF-8 nick and channel names

+ 1
- 1
irc/constants.go View File

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

Loading…
Cancel
Save