Version 0.5.0: Many improvements #8

Merged
cadey merged 5 commits from refactor-git-mod into main 2020-07-09 19:25:58 +00:00
5 changed files with 25 additions and 5 deletions
Showing only changes of commit 3846c349c4 - Show all commits

View File

@ -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

4
Cargo.lock generated
View File

@ -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",

View File

@ -1,6 +1,6 @@
[package]
name = "gitea-release"
version = "0.3.2"
version = "0.5.0"
authors = ["Christine Dodrill <me@christine.website>"]
edition = "2018"

View File

@ -1 +1 @@
0.4.0
0.5.0

View File

@ -1,6 +1,6 @@
[package]
name = "gitea"
version = "0.1.0"
version = "0.2.0"
authors = ["Christine Dodrill <me@christine.website>"]
edition = "2018"
homepage = "https://tulpa.dev/cadey/gitea-release/src/branch/main/gitea"