From 56cffbe9cc021eec908328eb026c7982b65e64a1 Mon Sep 17 00:00:00 2001 From: Jay Oster Date: Sat, 10 Feb 2024 16:02:25 -0600 Subject: [PATCH] Prepare 0.2.0 (#12) * Prepare 0.2.0 * Add 0.2.0 to MSRV * Add Cargo.lock! Hooray! It's finally a recommended practice! --- .gitignore | 1 - Cargo.lock | 25 +++++++++++++++++++++++++ Cargo.toml | 2 +- MSRV.md | 1 + 4 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 Cargo.lock diff --git a/.gitignore b/.gitignore index 4fffb2f..ea8c4bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ /target -/Cargo.lock diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..fd53a0e --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,25 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "myn" +version = "0.2.0" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "proc-macro2" +version = "1.0.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" diff --git a/Cargo.toml b/Cargo.toml index ece46ad..c175635 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "myn" description = "Minimalist Rust syntax parsing for procedural macros" -version = "0.1.0" +version = "0.2.0" authors = ["Jay Oster "] repository = "https://github.com/parasyte/myn" edition = "2021" diff --git a/MSRV.md b/MSRV.md index f14f6f2..246e9ef 100644 --- a/MSRV.md +++ b/MSRV.md @@ -3,6 +3,7 @@ | `myn` version | `rustc` version | |---------------|-----------------| | (unreleased) | `1.58.0` | +| `0.2.0` | `1.58.0` | | `0.1.0` | `1.58.0` | ## Policy