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.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LegNeato committed Aug 21, 2020
1 parent 0ba6957 commit f3822e7
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
Expand Up @@ -2,6 +2,10 @@

- No changes yet

## [[0.3.1] - 2020-08-20](https://github.com/LegNeato/aws-lambda-events/releases/tag/v0.3.1)

- 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)
Expand Down
2 changes: 1 addition & 1 deletion aws_lambda_events/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "aws_lambda_events"
version = "0.3.1-pre"
version = "0.3.1"
description = "AWS Lambda event definitions"
authors = [
"Christian Legnitto <christian@legnitto.com>",
Expand Down
6 changes: 3 additions & 3 deletions aws_lambda_events/README.md
@@ -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.3.0)](https://docs.rs/aws_lambda_events/0.3.0)
[![Documentation](https://docs.rs/aws_lambda_events/badge.svg?version=0.3.1)](https://docs.rs/aws_lambda_events/0.3.1)

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.3.0"
aws_lambda_events = "^0.3.1"
```

## 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.3.0).
For a list of supported AWS Lambda events and services, see [the crate reference documentation](https://docs.rs/aws_lambda_events/0.3.1).

## How it works

Expand Down
4 changes: 2 additions & 2 deletions aws_lambda_events/release.toml
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.3.0", replace="{{version}}"},
{file="release.toml", search="0.3.0", replace="{{version}}"},
{file="README.md", search="0.3.1", replace="{{version}}"},
{file="release.toml", search="0.3.1", 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 f3822e7

Please sign in to comment.