Skip to content

Commit 509c137

Browse files
committed
Release 2.0.0
1 parent b4dcc3e commit 509c137

2 files changed

Lines changed: 61 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,63 @@
1+
## 2.0.0 (2021-07-05)
2+
This release now only supports Python 3.6+
3+
Special thanks to @michael-k for the Python 3 work and tooling improvements.
4+
5+
* Changes for Python 3.6+ (deprecating Python 2.x)
6+
* Update generated files for Python 3.6+
7+
* Update Python3 changes per review feedback
8+
* Do not hardcode partition if region isn't
9+
* Bump httpx[http2] from 0.16.1 to 0.17.0 in /scrape
10+
* Properly chain exception
11+
* Fix imports for 'Amazon Mechanical Turk Crowd'
12+
* Switch from Travis CI to GitHub Actions and use tox
13+
* Update manifest and check it with 'check_manifest'
14+
* Change packaging to use declarative config in setup.cfg
15+
* Add a release workflow
16+
* Tweaks for "make test"
17+
* Format the project files and auto-generate code for black code formatting
18+
* Deprecate legacy ARN generation
19+
* Run black on examples
20+
* Regenerate awacs code with black code formatting
21+
* Black format crowd.py
22+
* Changes for "make test" to work properly with black formatting
23+
* Add new tools to requirements.txt and run black/isort during scrape
24+
* Run isort on project files
25+
* Per review feedback, remove arbitrary indenting and use black for formatting
26+
* Bump httpx[http2] from 0.17.0 to 0.17.1 in /scrape
27+
* Use Python 3 way to call super()
28+
* Add type hints
29+
* Regenerate awacs code with type hints
30+
* Check type hints with mypy
31+
* Add 'py.typed' for PEP 561 compat
32+
* Stop inheriting from object explicitly
33+
* Remove 'u' prefix from strings
34+
* Bump lxml from 4.6.2 to 4.6.3 in /scrape
35+
* Fix scrape breakage by mapping "Amazon API Gateway Management V2" to "apigateway"
36+
* Add mypy dependency
37+
* Action Update 2021-12
38+
* Action Update 2021-14
39+
* New actions for services and adds mgm (application migration service)
40+
* Action Update 2021-15
41+
* Action Update 2021-16
42+
* Action Update 2021-19
43+
* Remove aws.ARN
44+
* Bump pyflakes from 2.3.0 to 2.3.1 in /scrape
45+
* Bump httpx[http2] from 0.17.1 to 0.18.1 in /scrape
46+
* Bump tox from 3.23.0 to 3.23.1 in /scrape
47+
* Bump black from 20.8b1 to 21.5b1 in /scrape
48+
* Bump aiofiles from 0.6.0 to 0.7.0 in /scrape
49+
* Action Update 2021-20
50+
* Add static definitions for Conditions to allow for better linting
51+
* Action Update 2021-26
52+
* Bump black from 21.5b1 to 21.6b0 in /scrape
53+
* Do not remove account and region from non-bucket s3 ARNs
54+
* Bump httpx[http2] from 0.18.1 to 0.18.2 in /scrape
55+
* Bump mypy from 0.812 to 0.910 in /scrape
56+
* Fix syntax error in comment
57+
* Bump isort from 5.8.0 to 5.9.1 in /scrape
58+
* Use PyPA's `build` project to build sdist and wheel
59+
* Action Update 2021-26
60+
161
## 1.0.4 (2021-03-20)
262
* Action Update 2021-11
363
* Fix scrape breakage by mapping "Amazon Simple Email Service v2" to "ses"

awacs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import types
1010
from typing import Any, NoReturn, Optional, TypeVar, Union
1111

12-
__version__ = "1.0.4"
12+
__version__ = "2.0.0"
1313

1414
valid_names = re.compile(r"^[a-zA-Z0-9]+$")
1515

0 commit comments

Comments
 (0)