Skip to content

Commit 8cc362f

Browse files
committed
chore(release): release aws-lambda-publish-shared-event 0.12.0
1 parent 7b29cd4 commit 8cc362f

4 files changed

Lines changed: 28 additions & 4 deletions

File tree

event-schema/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,28 @@ generate-test-event ses/ses.json > event.json
8484

8585
See [Lambda Events](https://lambda.101i.de/) for more documentation on the different AWS Lambda event structures
8686
and see the official docs on [AWS Lambda Shareable test events](https://docs.aws.amazon.com/lambda/latest/dg/testing-functions.html#creating-shareable-events).
87+
88+
## Recent changes
89+
90+
### 0.12.0
91+
92+
- Add `generate-test-event` support
93+
- Add python 3.7 support
94+
95+
### 0.11.0
96+
97+
- Add support for python 3.8
98+
99+
### 0.10.0
100+
101+
- Add python 3.10 and dependabot
102+
- Add security and linting
103+
- Add coverage report
104+
105+
### 0.9.0
106+
107+
- Add long form cli arguments (`--region`, `--lambda-name`, `--event-name`)
108+
109+
### 0.8.0
110+
111+
- Update dependencies and clean up code

event-schema/generate-test-event

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
#!/bin/bash
22
poetry run python3 -m aws_lambda_publish_shared_event.generate_test_event $@
3-

event-schema/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-lambda-publish-shared-event"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
description = "Creating Shareable test events"
55
license = "MIT"
66
authors = ["Michael Brewer"]

event-schema/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="aws-lambda-publish-shared-event",
10-
version="0.11.0",
10+
version="0.12.0",
1111
entry_points={
1212
"console_scripts": [
1313
"publish-shared-event=aws_lambda_publish_shared_event.__main__:main",
@@ -20,7 +20,7 @@
2020
description="Cli to publish shareable lambda test events.",
2121
long_description=README,
2222
long_description_content_type="text/markdown",
23-
packages=["aws_lambda_publish_shared_event"],
23+
packages=["aws_lambda_publish_shared_event", "aws_lambda_publish_shared_event.generate_test_event"],
2424
install_requires=[
2525
"boto3 >= 1.21.24",
2626
"botocore >= 1.24.24",

0 commit comments

Comments
 (0)