Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LegNeato committed May 4, 2020
1 parent 41c333b commit d1b1c53
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions aws_lambda_events/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## master

- No changes yet

## [[0.3.0] - 2020-05-03](https://github.com/LegNeato/aws-lambda-events/releases/tag/v0.3.0)

- Various API Gateway v2 fixes. Thanks @ewbankkit! [#18](https://github.com/LegNeato/aws-lambda-events/pull/18)
- The `size` size field in `S3Object` is now optional as it can be missing or `null` in the event json payload. [#11](https://github.com/LegNeato/aws-lambda-events/issues/11)

Expand Down
2 changes: 1 addition & 1 deletion aws_lambda_events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws_lambda_events"
version = "0.2.8-pre"
version = "0.3.0"
description = "AWS Lambda event definitions"
authors = [
"Christian Legnitto <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions aws_lambda_events/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# [aws_lambda_events](https://github.com/LegNeato/aws-lambda-events)

[![Build Status](https://travis-ci.org/LegNeato/aws-lambda-events.svg?branch=master)](https://travis-ci.org/LegNeato/aws-lambda-events)
[![Documentation](https://docs.rs/aws_lambda_events/badge.svg?version=0.2.7)](https://docs.rs/aws_lambda_events/0.2.7)
[![Documentation](https://docs.rs/aws_lambda_events/badge.svg?version=0.3.0)](https://docs.rs/aws_lambda_events/0.3.0)

This crate provides strongly-typed [AWS Lambda event structs](https://docs.aws.amazon.com/lambda/latest/dg/invoking-lambda-function.html) in Rust.

Expand All @@ -11,7 +11,7 @@ Include the crate in your `Cargo.toml`:

```toml
[dependencies]
aws_lambda_events = "^0.2.7"
aws_lambda_events = "^0.3.0"
```

## Usage
Expand All @@ -23,7 +23,7 @@ The types
defined in this crate are usually used with handlers / runtimes provided by the [official Rust runtime](https://github.com/awslabs/aws-lambda-rust-runtime) or community projects such as [`rust-aws-lambda`](https://github.com/srijs/rust-aws-lambda),
[`rust-crowbar`](https://github.com/ilianaw/rust-crowbar), and [`serverless_rust`](https://github.com/softprops/serverless-rust).

For a list of supported AWS Lambda events and services, see [the crate reference documentation](https://docs.rs/aws_lambda_events/0.2.7).
For a list of supported AWS Lambda events and services, see [the crate reference documentation](https://docs.rs/aws_lambda_events/0.3.0).

## How it works

Expand Down
4 changes: 2 additions & 2 deletions aws_lambda_events/release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ tag-prefix = "v"
tag-message = "Release {{prefix}}{{version}}"
upload-doc = false
pre-release-replacements = [
{file="README.md", search="0.2.7", replace="{{version}}"},
{file="release.toml", search="0.2.7", replace="{{version}}"},
{file="README.md", search="0.3.0", replace="{{version}}"},
{file="release.toml", search="0.3.0", replace="{{version}}"},
{ file="CHANGELOG.md", search="## master", replace="## master\n\n- No changes yet\n\n## [[{{version}}] - {{date}}](https://github.com/LegNeato/aws-lambda-events/releases/tag/v{{version}})"},
]

0 comments on commit d1b1c53

Please sign in to comment.