summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--API.md2
-rw-r--r--README.md2
-rw-r--r--init.lua4
3 files changed, 4 insertions, 4 deletions
diff --git a/API.md b/API.md
index bf7034d..dae97ad 100644
--- a/API.md
+++ b/API.md
@@ -1,4 +1,4 @@
-# API documentation for version 0.6.0
+# API documentation for version 0.6.1
## 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 0fbb7b6..9986970 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.6.0
+Current version: 0.6.1
## For users
### Accessing the help
diff --git a/init.lua b/init.lua
index c58d2c2..0010c77 100644
--- a/init.lua
+++ b/init.lua
@@ -14,8 +14,8 @@ doc = {}
doc.VERSION = {}
doc.VERSION.MAJOR = 0
-doc.VERSION.MINOR = 5
-doc.VERSION.PATCH = 0
+doc.VERSION.MINOR = 6
+doc.VERSION.PATCH = 1
doc.VERSION.STRING = doc.VERSION.MAJOR.."."..doc.VERSION.MINOR.."."..doc.VERSION.PATCH