Skip to content

Commit

Permalink
Release 0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 21, 2023
1 parent 2d8d971 commit cddf4d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reflect"
version = "0.0.12"
version = "0.0.13"
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::procedural-macro-helpers"]
description = "The \"but I thought Rust doesn't have reflection?\" memorial brand new way of defining procedural macros."
Expand All @@ -16,7 +16,7 @@ rust-version = "1.56"
proc-macro2 = "1.0.63"
quote = "1.0.29"
ref-cast = "1.0.18"
reflect-internal = { version = "=0.0.12", path = "macros" }
reflect-internal = { version = "=0.0.13", path = "macros" }
syn = "2.0.23"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reflect-internal"
version = "0.0.12"
version = "0.0.13"
authors = ["David Tolnay <[email protected]>"]
description = "Procedural macros required by the `reflect` crate."
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@
//! simple reflection-like `reflect::Value` object manipulations into a fully
//! general and robust procedural macro.
#![doc(html_root_url = "https://docs.rs/reflect/0.0.12")]
#![doc(html_root_url = "https://docs.rs/reflect/0.0.13")]
#![allow(unused_variables, dead_code)]
#![allow(
clippy::enum_glob_use,
Expand Down

0 comments on commit cddf4d9

Please sign in to comment.