From 94e6fecaa0928b08399884366f68d5a5ce8ed7d9 Mon Sep 17 00:00:00 2001 From: Jan David Date: Sun, 18 Sep 2022 18:25:16 +0200 Subject: [PATCH] Bump crates from 0.1.0 to 0.2.0 (#54) A new version of both crates is released in anticipation of significant changes to their core logic. This is as far as we are going to push the current task design, so releasing a "final" version seems appropriate. --- automatons/Cargo.toml | 2 +- integrations/github/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/automatons/Cargo.toml b/automatons/Cargo.toml index 80cf9f1..9b37e37 100644 --- a/automatons/Cargo.toml +++ b/automatons/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "automatons" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "Automation framework for software developers" diff --git a/integrations/github/Cargo.toml b/integrations/github/Cargo.toml index fbf29d4..8e82f09 100644 --- a/integrations/github/Cargo.toml +++ b/integrations/github/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "automatons-github" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "GitHub integration for the automatons framework" @@ -21,7 +21,7 @@ keywords = [ [dependencies] anyhow = { version = "1" } async-trait = "0.1" -automatons = { path = "../../automatons", version = "0.1" } +automatons = { path = "../../automatons", version = "0.2" } chrono = { version = "0.4", features = ["serde"] } futures = "0.3.24" jsonwebtoken = { version = "8" }