Compare commits
4 Commits
0.2.0
...
fix/initia
Author | SHA1 | Date | |
---|---|---|---|
113e5282ef
|
|||
fa67dfeee3 | |||
8a8d309ddf | |||
09508ec986
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.2.1] - 2023-08-04
|
||||||
|
|
||||||
|
### Docs
|
||||||
|
- *(check)* 0.2 milestone, forgot for 0.2.0
|
||||||
|
|
||||||
## [0.2.0] - 2023-08-03
|
## [0.2.0] - 2023-08-03
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
17
README.md
17
README.md
@@ -38,20 +38,23 @@ See docs for more information about installation and some such
|
|||||||
|
|
||||||
### 0.2 Milestone
|
### 0.2 Milestone
|
||||||
|
|
||||||
- [ ] Add docs
|
- [x] Add docs
|
||||||
- [ ] Add asciinema
|
- [ ] Add asciinema
|
||||||
- [ ] Create docker image
|
- [x] Create docker image
|
||||||
- [ ] Add examples
|
- [x] Add examples
|
||||||
- [ ] Fx drone config
|
- [x] Fx drone config
|
||||||
- [ ] Releaser
|
- [x] Releaser
|
||||||
- [ ] On main/master
|
- [x] On main/master
|
||||||
- [ ] Add reporter for PR and Repositories
|
|
||||||
- [ ] tbd...
|
- [ ] tbd...
|
||||||
|
|
||||||
### 0.3 Milestone
|
### 0.3 Milestone
|
||||||
|
|
||||||
|
- [ ] Fix: 0.0.0 -> **v**0.0.0
|
||||||
|
- [ ] Add release strategies
|
||||||
|
- [ ] Add reporter for PR and Repositories
|
||||||
- [ ] Add inquire for missing values when needed (when not running in ci or have a proper tty)
|
- [ ] Add inquire for missing values when needed (when not running in ci or have a proper tty)
|
||||||
- [ ] Break down cuddle-please-misc
|
- [ ] Break down cuddle-please-misc
|
||||||
|
- [ ] ci(release): Add cuddle-please release artifacts for the different os and so on.
|
||||||
|
|
||||||
### 0.x Milestone
|
### 0.x Milestone
|
||||||
- [ ] Add github support
|
- [ ] Add github support
|
||||||
|
@@ -149,7 +149,8 @@ impl ReleaseCommandHandler {
|
|||||||
owner,
|
owner,
|
||||||
repository,
|
repository,
|
||||||
&next_version.to_string(),
|
&next_version.to_string(),
|
||||||
&changelog_last_changes.unwrap(),
|
&changelog_last_changes
|
||||||
|
.ok_or(anyhow::anyhow!("could not get the latest changes"))?,
|
||||||
existing_pr,
|
existing_pr,
|
||||||
)?
|
)?
|
||||||
} else {
|
} else {
|
||||||
@@ -164,7 +165,8 @@ impl ReleaseCommandHandler {
|
|||||||
owner,
|
owner,
|
||||||
repository,
|
repository,
|
||||||
&next_version.to_string(),
|
&next_version.to_string(),
|
||||||
&changelog,
|
&changelog_last_changes
|
||||||
|
.ok_or(anyhow::anyhow!("could not get the latest changes"))?,
|
||||||
branch,
|
branch,
|
||||||
)?
|
)?
|
||||||
} else {
|
} else {
|
||||||
|
@@ -330,7 +330,7 @@ impl RemoteGitEngine for GiteaClient {
|
|||||||
base: base.into(),
|
base: base.into(),
|
||||||
body: body.into(),
|
body: body.into(),
|
||||||
head: "cuddle-please/release".into(),
|
head: "cuddle-please/release".into(),
|
||||||
title: format!("chore(release): {}", version),
|
title: format!("chore(release): v{}", version),
|
||||||
};
|
};
|
||||||
|
|
||||||
tracing::trace!(
|
tracing::trace!(
|
||||||
@@ -377,7 +377,7 @@ impl RemoteGitEngine for GiteaClient {
|
|||||||
|
|
||||||
let request = CreatePullRequestOption {
|
let request = CreatePullRequestOption {
|
||||||
body: body.into(),
|
body: body.into(),
|
||||||
title: format!("chore(release): {}", version),
|
title: format!("chore(release): v{}", version),
|
||||||
};
|
};
|
||||||
|
|
||||||
tracing::trace!(
|
tracing::trace!(
|
||||||
@@ -429,9 +429,9 @@ impl RemoteGitEngine for GiteaClient {
|
|||||||
let request = CreateReleaseOption {
|
let request = CreateReleaseOption {
|
||||||
body: body.into(),
|
body: body.into(),
|
||||||
draft: false,
|
draft: false,
|
||||||
name: version.into(),
|
name: format!("v{version}"),
|
||||||
prerelease,
|
prerelease,
|
||||||
tag_name: version.into(),
|
tag_name: format!("v{version}"),
|
||||||
};
|
};
|
||||||
|
|
||||||
tracing::trace!(
|
tracing::trace!(
|
||||||
|
Reference in New Issue
Block a user