diff --git a/CHANGELOG.md b/CHANGELOG.md index 7761a0a..1cef538 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v2.0.0 (2024-09-05) + +No changes, simply releasing pre-release as full release. + # v2.0.0-pre.1 (2024-09-01) * __Crate has been renamed to `proc-macro-error2`, due to the old maintainer's inactivity.__ diff --git a/Cargo.toml b/Cargo.toml index 45782f9..3ba4c3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ authors = [ "CreepySkeleton ", "GnomedDev ", ] -version = "2.0.0-pre.1" +version = "2.0.0" description = "Almost drop-in replacement to panics in proc-macros" repository = "https://github.com/GnomedDev/proc-macro-error-2" rust-version = "1.61" @@ -16,7 +16,7 @@ edition = "2021" [dependencies] quote = "1" proc-macro2 = "1" -proc-macro-error-attr2 = { path = "./proc-macro-error-attr", version = "=2.0.0-pre.1" } +proc-macro-error-attr2 = { path = "./proc-macro-error-attr", version = "=2.0.0" } [dependencies.syn] version = "2" diff --git a/proc-macro-error-attr/Cargo.toml b/proc-macro-error-attr/Cargo.toml index 1810c8f..29a4f0c 100644 --- a/proc-macro-error-attr/Cargo.toml +++ b/proc-macro-error-attr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proc-macro-error-attr2" -version = "2.0.0-pre.1" +version = "2.0.0" authors = [ "CreepySkeleton ", "GnomedDev ", diff --git a/src/lib.rs b/src/lib.rs index f708a4b..01a2a9e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,7 +21,7 @@ //! //! ```toml //! [dependencies] -//! proc-macro-error2 = { version = "2.0.0-pre.1", default-features = false } +//! proc-macro-error2 = { version = "2.0.0", default-features = false } //! ``` //! //! ***Please note that disabling this feature makes sense only if you don't depend on `syn`