diff options
author | Wuzzy <almikes@aol.com> | 2016-10-27 17:34:57 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-10-27 17:34:57 +0200 |
commit | 8316d941e09f6b7bff9e3003799b35969b9588ef (patch) | |
tree | 0098de0be0ca96773316f64eff5528b33fea6f7a | |
parent | 77fa7a17c083df050ab6685f6fffc05dbf627f5e (diff) |
Fix version number (0.6.1)
-rw-r--r-- | API.md | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | init.lua | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -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 @@ -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 @@ -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 |