Skip to content

Commit

Permalink
Bumped required API dump version to 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lvc committed Aug 30, 2017
1 parent cde153a commit 5ecfe47
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ All rights reserved.
RELEASE INFORMATION

Project: Java API Compliance Checker (JAPICC)
Version: 2.2
Version: 2.3
Date: August 30, 2017


Expand Down
9 changes: 9 additions & 0 deletions doc/Changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ <h1>Java API Compliance<br/>Checker: History</h1>
<p/>
<br/>

<b>Version 2.3 (August 30, 2017)</b><br/>
<b>Bug Fixes</b>
<ul>
<li>
Bumped required API dump version to 2.2
</li>
</ul>
<br/>

<b>Version 2.2 (August 30, 2017)</b><br/>
<b>Analysis</b>
<ul>
Expand Down
6 changes: 3 additions & 3 deletions japi-compliance-checker.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl
###########################################################################
# Java API Compliance Checker (JAPICC) 2.2
# Java API Compliance Checker (JAPICC) 2.3
# A tool for checking backward compatibility of a Java library API
#
# Written by Andrey Ponomarenko
Expand Down Expand Up @@ -42,9 +42,9 @@
use Cwd qw(abs_path cwd);
use Data::Dumper;

my $TOOL_VERSION = "2.2";
my $TOOL_VERSION = "2.3";
my $API_DUMP_VERSION = "2.2";
my $API_DUMP_VERSION_MIN = "2.0";
my $API_DUMP_VERSION_MIN = "2.2";

# Internal modules
my $MODULES_DIR = getModules();
Expand Down

0 comments on commit 5ecfe47

Please sign in to comment.