From 499a368d0b78b7b1b264fb6edaeffad5bee4d7fc Mon Sep 17 00:00:00 2001 From: Matt Schuchard Date: Wed, 16 Oct 2024 16:24:54 -0400 Subject: [PATCH] cleanup and iterate version --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- src/concourse.rs | 1 - src/github_issue.rs | 1 - 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c7a3c2..6b6e3d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -### 1.2.0 +### 1.2.0 (Next) - Update issue state inputs to be lowercase for Octocrab consistency. ### 1.1.1 diff --git a/Cargo.toml b/Cargo.toml index f3f15a0..1127f7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "concourse-github-issue" -version = "1.1.1" +version = "1.2.0" edition = "2021" [dependencies] diff --git a/src/concourse.rs b/src/concourse.rs index c32c947..818cf1b 100644 --- a/src/concourse.rs +++ b/src/concourse.rs @@ -1,7 +1,6 @@ //! # Concourse //! //! `concourse` contains the structs for serialization to concourse outputs and deserialization from concourse inputs. Ordinarily more functionality is required here, but this crate leverages the concourse rust bindings to automatically provide functionality through trait implementations. - use serde::{Deserialize, Serialize}; use concourse_resource::IntoMetadataKV; diff --git a/src/github_issue.rs b/src/github_issue.rs index 87d4134..bd36e43 100644 --- a/src/github_issue.rs +++ b/src/github_issue.rs @@ -1,7 +1,6 @@ //! # Github Issue //! //! `github_issue` is a minimal utility to create and update issues within Github. - use log; // allowed operations for github issue interactions