Skip to content

Commit

Permalink
Prepare version 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MitMaro committed Jun 30, 2024
1 parent 7bbbc25 commit f98ac0c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,20 @@ All notable changes to this project will be documented in this file.

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

## 0.1.0 - 2021-07-01
## [1.0.0] - 2023-06-30

### Added
- Defined minimum supported Rust version ([#9](https://github.com/MitMaro/captur/pull/9))

### Changed
- Upgraded to Rust 2021 ([#9](https://github.com/MitMaro/captur/pull/9))
- Warn on lint failure instead of deny ([#6](https://github.com/MitMaro/captur/pull/6))

## [0.1.0] - 2021-07-01

### Added
- Initial project release

[Unreleased]: https://github.com/MitMaro/captur/compare/0.1.0...HEAD
[1.0.0]: https://github.com/MitMaro/captur/compare/0.1.0...1.0.0
[0.1.0]: https://github.com/MitMaro/captur/commit/e63285301746be5f3545e646a087ee54ca83f98e
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "captur"
version = "0.1.0"
version = "1.0.0"
authors = ["Tim Oram <[email protected]>"]
description = "Macro to capture whole structs from disjoint fields in a closure."
repository = "https://github.com/MitMaro/captur"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ While this is trivial to implement in closures where capturing is required, with

```toml
[dependencies]
captur = "0.1"
captur = "1"
```

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

# Supported Rust Versions

This project will support all Rust versions since 1.51, when Rust first supported Rust 2021.
This project will support all Rust versions since 1.51 when Rust first supported Rust 2021.

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

Expand Down

0 comments on commit f98ac0c

Please sign in to comment.