summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWuzzy <almikes@aol.com>2016-12-03 17:42:00 +0100
committerWuzzy <almikes@aol.com>2016-12-03 17:42:00 +0100
commite4cace00761bac6abaf1de066aaebde57dbd8bb3 (patch)
tree92e99d14b9505649a5a07274006a7ddf39777628
parent5fb4971a40504407fd2210089502e79d0448ba37 (diff)
Version 0.9.0
-rw-r--r--API.md2
-rw-r--r--README.md2
-rw-r--r--init.lua2
3 files changed, 3 insertions, 3 deletions
diff --git a/API.md b/API.md
index bbe32b8..471800b 100644
--- a/API.md
+++ b/API.md
@@ -1,4 +1,4 @@
-# API documentation for version 0.7.0
+# API documentation for the Documentation System core framework
## Core concepts
As a modder, you are free to write basically about everything and are also
relatively free in the presentation of information. The Documentation
diff --git a/README.md b/README.md
index b3a053f..5dc3469 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ This mod provides a simple and highly extensible form in which the user
can access help pages about various things and the modder can add those pages.
The mod itself does not provide any help texts, just the framework.
-Current version: 0.8.0
+Current version: 0.9.0
## For users
### Accessing the help
diff --git a/init.lua b/init.lua
index 519f561..63c7ad8 100644
--- a/init.lua
+++ b/init.lua
@@ -15,7 +15,7 @@ doc = {}
-- Version number (follows the SemVer specification 2.0.0)
doc.VERSION = {}
doc.VERSION.MAJOR = 0
-doc.VERSION.MINOR = 8
+doc.VERSION.MINOR = 9
doc.VERSION.PATCH = 0
doc.VERSION.STRING = doc.VERSION.MAJOR.."."..doc.VERSION.MINOR.."."..doc.VERSION.PATCH