diff --git a/INSTALL b/INSTALL
index 020610d..cae2b5c 100644
--- a/INSTALL
+++ b/INSTALL
@@ -8,8 +8,8 @@ All rights reserved.
RELEASE INFORMATION
Project: ABI Compliance Checker (ABICC)
-Version: 2.0 Beta
-Date: 2017-01-19
+Version: 2.0
+Date: 2017-01-28
This file explains how to install and setup environment
diff --git a/README b/README
index ef80688..7b53028 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-ABICC 2.0 Beta
-==============
+ABICC 2.0
+=========
NAME:
ABI Compliance Checker (ABICC) - a tool for checking backward binary and source-level compatibility of a C/C++ software library.
diff --git a/abi-compliance-checker.pl b/abi-compliance-checker.pl
index 378c627..31f5c3d 100644
--- a/abi-compliance-checker.pl
+++ b/abi-compliance-checker.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
###########################################################################
-# ABI Compliance Checker (ABICC) 2.0 Beta
+# ABI Compliance Checker (ABICC) 2.0
# A tool for checking backward compatibility of a C/C++ library API
#
# Copyright (C) 2009-2011 Institute for System Programming, RAS
diff --git a/doc/Changelog.html b/doc/Changelog.html
index 7195db3..a017829 100644
--- a/doc/Changelog.html
+++ b/doc/Changelog.html
@@ -44,7 +44,7 @@
ABI Compliance
Checker: History
-Version 2.0 Beta (November 14, 2016)
+Version 2.0 (January 28, 2017)
Improvements
-
@@ -95,12 +95,18 @@
ABI Compliance
Checker: History
-
Improved support for Solaris
+ -
+ Compare versioned data types
+
New Options
-
Added -filter option: a path to XML descriptor with skip_* rules to filter analyzed symbols in the report
+ -
+ Added -keep-cxx option to check _ZS*, _ZNS* and _ZNKS* symbols
+
Bug Fixes
@@ -116,6 +122,60 @@ ABI Compliance
Checker: History
-
Fixed source-compatibility reports
+ -
+ Fixed counter of checked data types
+
+ -
+ Fixed lists of affected symbols
+
+ -
+ Fixed analysis of standard C++ libraries
+
+ -
+ Fixed analysis of added and removed virtual methods
+
+ -
+ Fixed style of the report
+
+ -
+ Fixed analysis of alias symbols
+
+ -
+ Uncover changed typedefs properly
+
+ -
+ Fixed Parameter_From_Register and Parameter_To_Register rules
+
+ -
+ Fixed analysis of data types derived from template instances
+
+ -
+ Enable -headers-only option automatically if header file is used as input library descriptor
+
+ -
+ Fixed analysis of template instances
+
+ -
+ Fixed analysis of static data
+
+ -
+ Fixed error message if modules are not installed
+
+ -
+ Fixed analysis of versioned symbols
+
+ -
+ Fixed -ext option
+
+ -
+ Fixed -use-dumps option
+
+ -
+ Fixed -debug option
+
+ -
+ Fixed console output
+
Other