Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"