diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a98ab1..65e44a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.5.0 + +A lot of internals to this program were exposed to external consumers. This was +used to provide an integration test. + +Support for bracketed versions was added, a-la: + +```markdown +## [0.1.0] + +Hi there this is a test! + +### ADDED + +- something +``` + +The gitea crate was brought up to version `0.2.0` and includes a lot more +functionality. + ## 0.4.0 This is a functionality-breaking release that removes untested/extraneous parts diff --git a/Cargo.lock b/Cargo.lock index 956e74c..276a6d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "gitea" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "reqwest", @@ -348,7 +348,7 @@ dependencies = [ [[package]] name = "gitea-release" -version = "0.3.2" +version = "0.5.0" dependencies = [ "anyhow", "comrak", diff --git a/Cargo.toml b/Cargo.toml index d3d1ce8..b3380c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitea-release" -version = "0.3.2" +version = "0.5.0" authors = ["Christine Dodrill "] edition = "2018" diff --git a/VERSION b/VERSION index 1d0ba9e..8f0916f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0 +0.5.0 diff --git a/gitea/Cargo.toml b/gitea/Cargo.toml index e43d767..13a69e4 100644 --- a/gitea/Cargo.toml +++ b/gitea/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitea" -version = "0.1.0" +version = "0.2.0" authors = ["Christine Dodrill "] edition = "2018" homepage = "https://tulpa.dev/cadey/gitea-release/src/branch/main/gitea"