From 11f932a18b4953466e8c65f4bc4478b8ce71ed65 Mon Sep 17 00:00:00 2001 From: Scott Wolchok Date: Thu, 27 Jun 2019 09:46:28 -0700 Subject: [PATCH] Revert deletion of authors in Cargo.toml; v0.2.5 Summary: Turns out that `cargo publish` will not accept a crate with no authors. Reviewed By: adamjernst Differential Revision: D16031125 fbshipit-source-id: 7606110913bdb1ac1a5cf07378770c5112bd745b --- Cargo.lock | 2 +- Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 883c995..b8b86a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -245,7 +245,7 @@ dependencies = [ [[package]] name = "fastmod" -version = "0.2.4" +version = "0.2.5" dependencies = [ "assert_cli 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 83d45cf..1acf682 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "fastmod" -version = "0.2.4" +version = "0.2.5" +authors = ["Scott Wolchok "] description = "Fast, partial replacement for codemod (find/replace tool for programmers)" edition = "2018" homepage = "https://github.com/facebookincubator/fastmod"