From 3e7cbb7828e14c6adc0a191684dfd805527f11b8 Mon Sep 17 00:00:00 2001 From: Bendik Samseth Date: Wed, 21 Dec 2022 17:24:49 +0100 Subject: [PATCH] bump version 0.2.6 -> 0.3.0 Changes: - Allow setting token and cache directory with environment variables. - Store inputs and answers by session token. To allow using different profiles. Will cause cache invalidations once people get a new token, but that's typically once a month, i.e. once a year. That's a decent trade off. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 802c6b8..97c6003 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" [[package]] name = "aocd" -version = "0.2.6" +version = "0.3.0" dependencies = [ "anyhow", "aocd-proc", diff --git a/Cargo.toml b/Cargo.toml index 6c61d1f..5b61f43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aocd" -version = "0.2.6" +version = "0.3.0" edition = "2021" description = "Advent of Code Data - get puzzle input and submit answers from within your code" documentation = "https://docs.rs/aocd"