@@ -304,6 +304,8 @@ class Database(object):
304304 # version number should be used for small upgrades to the database.
305305 #
306306 # db change log:
307+ # - 2.0.22: (Node.js core API documentation parser changes)
308+ # - 2.0.21: (PHP namespace top-level-name performance tweaks)
307309 # - 2.0.20: (PHP namespace class inheritance scanning)
308310 # http://bugs.activestate.com/show_bug.cgi?id=84840
309311 # - 2.0.19: (Tcl statements include lassign)
@@ -348,7 +350,7 @@ class Database(object):
348350 # - 2.0.2: added scan_error to res_index in LangZone and MultiLangZone,
349351 # add "lang" file to lang zones for reverse safe_lang -> lang lookup
350352 # - 2.0.1: s/VERSION.txt/VERSION/, made PHP a MultiLangZone
351- VERSION = "2.0.20 "
353+ VERSION = "2.0.22 "
352354
353355 LEN_PREFIX = 3 # Length of prefix in 'toplevelprefix_index' indeces.
354356
@@ -592,6 +594,8 @@ def _upgrade_wipe_db_langs(self, curr_ver, result_ver, langs):
592594 "2.0.17" : (VERSION , _upgrade_wipe_db_langs , ["PHP" ]),
593595 "2.0.18" : (VERSION , _upgrade_wipe_db_langs , ["Tcl" ]),
594596 "2.0.19" : (VERSION , _upgrade_wipe_db_langs , ["PHP" ]),
597+ "2.0.20" : (VERSION , _upgrade_wipe_db_langs , ["PHP" ]),
598+ "2.0.21" : (VERSION , _upgrade_wipe_db_langs , ["Node.js" ]),
595599 }
596600
597601 def report_event (self , desc ):
0 commit comments