Skip to content

Commit f98ac0c

Browse files
committed
Prepare version 1.0.0 release
1 parent 7bbbc25 commit f98ac0c

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,20 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## 0.1.0 - 2021-07-01
6+
## [1.0.0] - 2023-06-30
7+
8+
### Added
9+
- Defined minimum supported Rust version ([#9](https://github.com/MitMaro/captur/pull/9))
10+
11+
### Changed
12+
- Upgraded to Rust 2021 ([#9](https://github.com/MitMaro/captur/pull/9))
13+
- Warn on lint failure instead of deny ([#6](https://github.com/MitMaro/captur/pull/6))
14+
15+
## [0.1.0] - 2021-07-01
716

817
### Added
918
- Initial project release
19+
20+
[Unreleased]: https://github.com/MitMaro/captur/compare/0.1.0...HEAD
21+
[1.0.0]: https://github.com/MitMaro/captur/compare/0.1.0...1.0.0
22+
[0.1.0]: https://github.com/MitMaro/captur/commit/e63285301746be5f3545e646a087ee54ca83f98e

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "captur"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
authors = ["Tim Oram <dev@mitmaro.ca>"]
55
description = "Macro to capture whole structs from disjoint fields in a closure."
66
repository = "https://github.com/MitMaro/captur"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ While this is trivial to implement in closures where capturing is required, with
2525

2626
```toml
2727
[dependencies]
28-
captur = "0.1"
28+
captur = "1"
2929
```
3030

3131
```rust
@@ -41,7 +41,7 @@ fn send_event_and_action(action: &Action, event: Event) {
4141

4242
# Supported Rust Versions
4343

44-
This project will support all Rust versions since 1.51, when Rust first supported Rust 2021.
44+
This project will support all Rust versions since 1.51 when Rust first supported Rust 2021.
4545

4646
Dropping support for a Rust version will result in a major version bump, following [Semantic Versioning](https://semver.org/).
4747

0 commit comments

Comments
 (0)