summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWuzzy <almikes@aol.com>2016-08-05 05:35:51 +0200
committerWuzzy <almikes@aol.com>2016-08-05 05:35:51 +0200
commit451960d43dbf59d6b4b98ac9938dff5e29dd9bc2 (patch)
tree7772f72d52b82e2fcd18d5e54963e1ab818f6abe
parent0cf233dfd03ef47c153c7b12d91769ffe1a9c95d (diff)
Version 0.3.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 9f450fd..d906e95 100644
--- a/API.md
+++ b/API.md
@@ -1,4 +1,4 @@
-# API documentation for version 0.2.0
+# API documentation for version 0.3.0
## Core principles
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 8c34529..0b3340c 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ This mod provides a simple and highly extensible formspec 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.2.0
+Current version: 0.3.0
## For users
To open the help, there are multiple ways:
diff --git a/init.lua b/init.lua
index 5bb91a3..4304a73 100644
--- a/init.lua
+++ b/init.lua
@@ -2,7 +2,7 @@ doc = {}
doc.VERSION = {}
doc.VERSION.MAJOR = 0
-doc.VERSION.MINOR = 2
+doc.VERSION.MINOR = 3
doc.VERSION.PATCH = 0
doc.VERSION.STRING = doc.VERSION.MAJOR.."."..doc.VERSION.MINOR.."."..doc.VERSION.PATCH