Skip to content

Commit f734b5d

Browse files
committed
Bumping version to v0.6.1 + README + CHANGELOG
1 parent 00c9ee0 commit f734b5d

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.1] - 2025-08-24
9+
10+
### Added
11+
- `FromStr` implementation for all string-like GraphQL scalar types (`ID`, and other AWS scalar types), enabling parsing from string slices:
12+
```rust
13+
let id: ID = "123e4567-e89b-12d3-a456-426614174000".parse().unwrap();
14+
```
15+
16+
### Fixed
17+
- Documentation badge in README now correctly links to the latest version instead of hardcoded v0.1.0
18+
19+
[0.6.1]: https://github.com/JeremieRodon/lambda-appsync/compare/v0.6.0...v0.6.1
20+
821
## [0.6.0] - 2025-04-21
922

1023
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["lambda-appsync", "lambda-appsync-proc"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.6.0"
6+
version = "0.6.1"
77
rust-version = "1.81.0"
88
edition = "2021"
99
authors = ["Jérémie RODON <jeremie.rodon@gmail.com>"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Add this dependency to your `Cargo.toml`:
3737

3838
```toml
3939
[dependencies]
40-
lambda-appsync = "0.6.0"
40+
lambda-appsync = "0.6.1"
4141
```
4242

4343
## Quick Start

0 commit comments

Comments
 (0)