From c9d9caff816ae07658ceb724c9ddd3fdc888ba47 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Fri, 12 Feb 2021 16:51:49 +0100 Subject: [PATCH] bump minor version The attentive will note that no code has changed since v0.1.0. However, the crate name had been squatted, and a v0.1.0 had already been published. I yanked all existing version on taking ownership, but bumping the minor version is still necessary to ensure that nobody downloads the current version while expecting the old one. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 403c8f4..e2ad724 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -108,7 +108,7 @@ checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b" [[package]] name = "calc" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "lalrpop", diff --git a/Cargo.toml b/Cargo.toml index 47ccfdc..5bf7229 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "calc" -version = "0.1.0" +version = "0.2.0" authors = ["Peter Goodspeed-Niklaus "] edition = "2018" description = "CLI calculator app"