16 lines
500 B
Perl
16 lines
500 B
Perl
|
package TWiki::Contrib::TwistyContrib;
|
||
|
|
||
|
use vars qw( $VERSION $RELEASE );
|
||
|
# This should always be $Rev: 12046$ so that TWiki can determine the checked-in
|
||
|
# status of the plugin. It is used by the build automation tools, so
|
||
|
# you should leave it alone.
|
||
|
$VERSION = '$Rev: 12046$';
|
||
|
|
||
|
# This is a free-form string you can use to "name" your own plugin version.
|
||
|
# It is *not* used by the build automation tools, but is reported as part
|
||
|
# of the version number in PLUGINDESCRIPTIONS.
|
||
|
$RELEASE = '1.2';
|
||
|
|
||
|
|
||
|
1;
|