From db4ccc4e3d61163c32b268c7e5141765a8b7bbab Mon Sep 17 00:00:00 2001 From: Bendik Samseth Date: Thu, 22 Dec 2022 11:39:56 +0100 Subject: [PATCH] bump 0.3.0 -> 0.3.1 Make use of aocd-proc 0.3.0. --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 97c6003..b9f5c4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" [[package]] name = "aocd" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "aocd-proc", @@ -55,7 +55,7 @@ dependencies = [ [[package]] name = "aocd-proc" -version = "0.2.1" +version = "0.3.0" dependencies = [ "chrono", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 5b61f43..7e7d083 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aocd" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "Advent of Code Data - get puzzle input and submit answers from within your code" documentation = "https://docs.rs/aocd" @@ -13,7 +13,7 @@ regex = "1.7.0" reqwest = { version = "0.11.13", features = ["blocking"] } rusqlite = { version = "0.28.0", features = ["bundled"] } shellexpand = "3.0.0" -aocd-proc = { path = "./aocd-proc", version = "0.2.1" } +aocd-proc = { path = "./aocd-proc", version = "0.3.0" } [dev-dependencies] mockall = "0.11.3"