Version 1.0.0

Hooray! Let's party!
This commit is contained in:
Wuzzy 2016-12-28 23:23:10 +01:00
parent 662b73646f
commit 02b7d15785
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ 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. The mod itself does not provide any help texts, just the framework.
It is the heart of the Help modpack, on which the other Help mods depend. It is the heart of the Help modpack, on which the other Help mods depend.
Current version: 0.11.0 Current version: 1.0.0
## For players ## For players
### Accessing the help ### Accessing the help

View File

@ -22,8 +22,8 @@ doc = {}
-- Version number (follows the SemVer specification 2.0.0) -- Version number (follows the SemVer specification 2.0.0)
doc.VERSION = {} doc.VERSION = {}
doc.VERSION.MAJOR = 0 doc.VERSION.MAJOR = 1
doc.VERSION.MINOR = 11 doc.VERSION.MINOR = 0
doc.VERSION.PATCH = 0 doc.VERSION.PATCH = 0
doc.VERSION.STRING = doc.VERSION.MAJOR.."."..doc.VERSION.MINOR.."."..doc.VERSION.PATCH doc.VERSION.STRING = doc.VERSION.MAJOR.."."..doc.VERSION.MINOR.."."..doc.VERSION.PATCH