Skip to content

Commit

Permalink
Create API review using modules in consistent order (#3832)
Browse files Browse the repository at this point in the history
* Create API review using modules in consistent order
  • Loading branch information
praveenkuttappan authored Aug 3, 2022
1 parent a3c131e commit 30a54c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion packages/python-packages/api-stub-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def _find_modules(self, pkg_root_path):
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):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

VERSION = "0.3.2"
VERSION = "0.3.3"

0 comments on commit 30a54c0

Please sign in to comment.