diff --git a/CHANGELOG.md b/CHANGELOG.md index 46152c6..a83df14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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/). +## [1.0.1] - 2024-05-02 + +### Changed + +- Clear out derive macro documentation. + ## [1.0.0] - 2024-05-02 ### Added diff --git a/Cargo.toml b/Cargo.toml index 0e97ab2..74dffe3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "transitive" -version = "1.0.0" +version = "1.0.1" edition = "2021" authors = ["bobozaur"] description = "Transitive derive macros for Rust." diff --git a/src/lib.rs b/src/lib.rs index f070d4f..cb3afa2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -225,7 +225,6 @@ use syn::parse_macro_input; use crate::transitive::TransitiveInput; -/// Derive macro that implements [From] for infallible transitions. #[proc_macro_derive(Transitive, attributes(transitive))] pub fn transitive(input: TokenStream) -> TokenStream { parse_macro_input!(input as TransitiveInput)