Create API review using modules in consistent order (#3832)

* Create API review using modules in consistent order
This commit is contained in:
praveenkuttappan 2022-08-03 17:25:26 -04:00 коммит произвёл GitHub
Родитель a3c131eafb
Коммит 30a54c0f00
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -1,6 +1,9 @@
# Release History
## Version 0.3.2 (Unreleased)
## Version 0.3.3 (2022-08-03)
Fixed issue in module order to get consistent order
## Version 0.3.2 (2022-07-19)
Fixed issue where comments would appear incorrectly on overloaded functions.
Fixed issue where inherited overloads would not appear in APIView.

Просмотреть файл

@ -186,7 +186,7 @@ class StubGenerator:
modules.extend(["{0}.{1}".format(module_name, x) for x in sub_modules])
logging.debug("Modules in package: {}".format(modules))
return modules
return sorted(modules)
def _generate_tokens(self, pkg_root_path, package_name, namespace, *, source_url):

Просмотреть файл

@ -1,4 +1,4 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
VERSION = "0.3.2"
VERSION = "0.3.3"