Skip to content

Commit

Permalink
chore(release): release aws-lambda-publish-shared-event 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbrewer committed Mar 28, 2022
1 parent 7b29cd4 commit 8cc362f
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
25 changes: 25 additions & 0 deletions event-schema/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,28 @@ generate-test-event ses/ses.json > event.json

See [Lambda Events](https://lambda.101i.de/) for more documentation on the different AWS Lambda event structures
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).

## Recent changes

### 0.12.0

- Add `generate-test-event` support
- Add python 3.7 support

### 0.11.0

- Add support for python 3.8

### 0.10.0

- Add python 3.10 and dependabot
- Add security and linting
- Add coverage report

### 0.9.0

- Add long form cli arguments (`--region`, `--lambda-name`, `--event-name`)

### 0.8.0

- Update dependencies and clean up code
1 change: 0 additions & 1 deletion event-schema/generate-test-event
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/bin/bash
poetry run python3 -m aws_lambda_publish_shared_event.generate_test_event $@

2 changes: 1 addition & 1 deletion event-schema/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws-lambda-publish-shared-event"
version = "0.12.0"
version = "0.13.0"
description = "Creating Shareable test events"
license = "MIT"
authors = ["Michael Brewer"]
Expand Down
4 changes: 2 additions & 2 deletions event-schema/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="aws-lambda-publish-shared-event",
version="0.11.0",
version="0.12.0",
entry_points={
"console_scripts": [
"publish-shared-event=aws_lambda_publish_shared_event.__main__:main",
Expand All @@ -20,7 +20,7 @@
description="Cli to publish shareable lambda test events.",
long_description=README,
long_description_content_type="text/markdown",
packages=["aws_lambda_publish_shared_event"],
packages=["aws_lambda_publish_shared_event", "aws_lambda_publish_shared_event.generate_test_event"],
install_requires=[
"boto3 >= 1.21.24",
"botocore >= 1.24.24",
Expand Down

0 comments on commit 8cc362f

Please sign in to comment.