summaryrefslogtreecommitdiff
path: root/IkiWiki.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-09-09 23:07:27 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-09-09 23:07:27 +0000
commit9bae90024229618c1bfd320f1513d1054af89e5a (patch)
tree54e05613341fcec5c2b4b8621ad97b404085b25b /IkiWiki.pm
parentdae0f48e91304afcb6ebe0936360e51b22a56548 (diff)
* Add a module version number to IkiWiki, so you can "use IkiWiki '1.00'"
to declare which version of the interface your plugin needs.
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r--IkiWiki.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm
index 1cbe975c0..499ec8834 100644
--- a/IkiWiki.pm
+++ b/IkiWiki.pm
@@ -14,6 +14,7 @@ use Exporter q{import};
our @EXPORT = qw(hook debug error template htmlpage add_depends pagespec_match
bestlink htmllink readfile writefile pagetype srcfile pagename
%config %links %renderedfiles %pagesources);
+our $VERSION = 1.00;
# Optimisation.
use Memoize;