Skip to content

Commit

Permalink
Merge pull request #254 from fwojciec/main
Browse files Browse the repository at this point in the history
Add get_available_subresources to CloudWandererServiceResource stubs
  • Loading branch information
Sam-Martin committed Dec 23, 2021
2 parents bfcd119 + 4ad0bc3 commit a1ae3d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.27.2

- Add `get_available_subresources` method to `CloudWandererServiceResource` stubs.

# 0.27.1

- Reinclude py.typed in package
Expand All @@ -10,7 +14,6 @@

- Moved account id and enabled region specifications to CloudWanderer3Boto3Session from AWSInterface. Fixes #247


# 0.26.0

- Allow the setting of `account_id` and `enabled_regions` in `CloudWandererAWSInterface` if you already know these values and want to avoid unnecessary API calls.
Expand Down
1 change: 1 addition & 0 deletions cloudwanderer/aws_interface/stubs/resource.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ class CloudWandererServiceResource:
def collection(self, resource_type: str, filters: Optional[Dict[str, str]] = None) -> Collection: ...
def load(self) -> None: ...
def fetch_secondary_attributes(self) -> None: ...
def get_available_subresources(self) -> List[str]: ...
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
long_description = re.sub(r"..\s+doctest\s+::", ".. code-block ::", f.read())

setup(
version="0.27.1",
version="0.27.2",
python_requires=">=3.6.0",
name="cloudwanderer",
packages=find_packages(include=["cloudwanderer", "cloudwanderer.*"]),
Expand Down

0 comments on commit a1ae3d8

Please sign in to comment.