Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RenaudDenis committed Nov 18, 2024
1 parent 6e4227f commit 421924c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 9 deletions.
35 changes: 29 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,45 @@
# Unreleased
# Changelog

# Version 1.4.0 (2024-10-28)
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## Version 1.4.1 (2024-11-18)

### Fixed

Update documentation examples to ignore code blocks so client tests are not impacted

## Version 1.4.0 (2024-10-28)

### Added

- Support for #[repr(type)]
- Support for Other variant

# Version 1.3.0 (2024-07-15)
## Version 1.3.0 (2024-07-15)

### Added

- Add `name()` method

# Version 1.2.0 (2024-07-02)
## Version 1.2.0 (2024-07-02)

### Added

- Add `discriminant()` and `from_discriminant(num)` methods

# Version 1.1.0 (2024-06-27)
## Version 1.1.0 (2024-06-27)

### Added

- Add `values()` method and document all methods in UnitEnum macro

# Version 1.0.0 (2024-03-17)
## Version 1.0.0 (2024-03-17)

### Added

- Initial Revision
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unit-enum"
version = "1.4.0"
version = "1.4.1"
authors = ["Renaud Denis <[email protected]>"]
description = "A procedural macro for deriving ordinal methods in unit-like enums for Rust."
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add the following to your `Cargo.toml`:

```toml
[dependencies]
unit-enum = "1.4.0"
unit-enum = "1.4.1"
```

## Quick Start
Expand Down

0 comments on commit 421924c

Please sign in to comment.