Skip to content

Commit

Permalink
Item12567: fix checking of version number in configure
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@16861 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
CrawfordCurrie authored and CrawfordCurrie committed Aug 16, 2013
1 parent 8ba6256 commit 3f4a65a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions JQueryPlugin/data/System/JQueryPlugin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ reduce bandwidth and speed up interactive performance.
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| | (4.83) - Item12567: fix version check in =configure= |
| 07 Jun 2013: | (4.82) - Item12528: fixed char mapping in jquery.wikiword |
| 31 May 2013: | (4.81) - Item12520: added jquery-1.10.1 and jquery-2.0.2 |
| 30 May 2013: | (4.80) - Item12519: upgraded superfish, supersubs and hoverintent |
Expand Down
4 changes: 2 additions & 2 deletions JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ use Foswiki::Plugins ();
use Foswiki::Plugins::JQueryPlugin::Plugins ();

# Simple decimal version, use parse method, no leading "v"
use version; our $VERSION = version->parse("4.82");
our $RELEASE = '4.82';
our $RELEASE = '4.83';
use version; our $VERSION = version->parse($RELEASE);
our $SHORTDESCRIPTION = 'jQuery <nop>JavaScript library for Foswiki';
our $NO_PREFS_IN_TOPIC = 1;

Expand Down

0 comments on commit 3f4a65a

Please sign in to comment.