diff --git a/INSTALL b/INSTALL
index b3442b9..66d2358 100644
--- a/INSTALL
+++ b/INSTALL
@@ -8,7 +8,7 @@ RELEASE INFORMATION
Project: Java API Compliance Checker (JAPICC)
Version: 2.2
-Date: 2017-04-17
+Date: August 30, 2017
This file explains how to install and setup environment
diff --git a/README b/README
index 6b8d687..bf5370f 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-JAPICC 2.1
+JAPICC 2.2
==========
NAME:
@@ -35,4 +35,4 @@ TEST SUITE:
japi-compliance-checker -test
- There are about 80 basic tests in the test suite.
+ There are about 100 basic tests in the test suite.
diff --git a/doc/Changelog.html b/doc/Changelog.html
index 2eda1f9..3dc54e2 100644
--- a/doc/Changelog.html
+++ b/doc/Changelog.html
@@ -44,6 +44,148 @@
Java API Compliance
Checker: History
+Version 2.2 (August 30, 2017)
+Analysis
+
+ -
+ Fixed analysis of generic types
+
+ -
+ Added compatibility rules:
+
+ -
+ Class_Became_Raw
+
+ -
+ Class_Became_Generic
+
+ -
+ Interface_Became_Raw
+
+ -
+ Interface_Became_Generic
+
+ -
+ Changed_Method_Return
+
+ -
+ Variable_Arity_To_Array
+
+ -
+ Array_To_Variable_Arity
+
+ -
+ Field_Became_NonFinal (Src)
+
+ -
+ NonConstant_Field_Became_Static (Src)
+
+ -
+ Static_Method_Became_Final (Bin)
+
+
+
+ -
+ Fixed rules:
+
+ -
+ Changed_Field_Type
+
+ -
+ Changed_Method_Return_From_Void
+
+ -
+ *_Added_Abstract_Method*
+
+
+
+ -
+ Fixed anasysis of added/removed super-classes
+
+ -
+ Compare class structure if became generic or raw
+
+ -
+ Check for unknown compatibility rules
+
+ -
+ Do not list added and removed protected methods in final classes
+
+ -
+ Reduced severity of changed super-class
+
+ -
+ Added -check-packages option to check packages matched by the regular expression
+
+ -
+ Fixed filtering of annotated classes
+
+ -
+ Fixed -client option
+
+
+Report
+
+ -
+ Show method return type in the problem description
+
+ -
+ Fixed signatures of generic constructors
+
+ -
+ Fixed order of methods in the report
+
+ -
+ Add noindex meta tag to empty reports
+
+ -
+ Fixed styles of the report
+
+
+Dump
+
+ -
+ Added GenericParam attribute
+
+ -
+ Fixed Type and BaseType of variable arity parameter
+
+ -
+ Show warning for old API dump versions
+
+ -
+ Increased ID length
+
+ -
+ Fixed methods mangled names in the API dump; old dumps should be recreated
+
+ -
+ Bumped dump version
+
+
+Tests
+
+ -
+ Added more test cases
+
+ -
+ Show path to the tests journal
+
+
+Misc
+
+ -
+ Properly handle errors of javap
+
+ -
+ Fixed number of arguments passed to javap on Linux
+
+ -
+ Properly handle errors when creating/extracting tarballs
+
+
+
+
Version 2.1 (February 12, 2017)
Improvements