From 8894a1bd5a2c4d79961b3309cb641d4a68d4fdbf Mon Sep 17 00:00:00 2001 From: Bogdan Mircea Date: Thu, 2 May 2024 19:44:26 +0300 Subject: [PATCH] Clear out derive macro documentation --- CHANGELOG.md | 6 ++++++ src/lib.rs | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) 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/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)