Skip to content

Commit 6f90ff2

Browse files
author
GitHub
committed
chore: prepare release 0.13.4
1 parent feab7ed commit 6f90ff2

File tree

3 files changed

+30
-29
lines changed

3 files changed

+30
-29
lines changed

.changeset/gitea_support.md

-28
This file was deleted.

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,35 @@ The results are changes to the current directory, calls to external commands, an
1010
Notably, anything written to standard output or standard error
1111
(what you see in the terminal) is _not_ considered part of the public API and may change between any versions.
1212

13+
## 0.13.4 (2024-01-13)
14+
15+
### Features
16+
17+
#### Gitea support
18+
19+
PR #759 closed issue #743. Thank you, @FallenValkyrie!
20+
21+
- Added Support for Gitea in the `CreatePullRequest` step
22+
- Added Support for Gitea in the `Release` step
23+
- Added A new `SelectGiteaIssue` step
24+
- Add support to generate Gitea config from known public Gitea instances
25+
26+
To use these new steps, just add a new section to your configuration, like this:
27+
28+
```toml
29+
[gitea]
30+
repo = "knope"
31+
owner = "knope-dev"
32+
host = "https://codeberg.org"
33+
```
34+
35+
You can now use the supported steps in the same way as their GitHub equivalents.
36+
37+
> [!TIP]
38+
> Knope can now generate a configuration for you, if your repository's remote is one of the known
39+
public Gitea instances. Currently only [Codeberg](https://codeberg.org) is supported,
40+
but feel free to add more [here](https://github.com/knope-dev/knope/blob/main/src/config/toml/config.rs#L90).
41+
1342
## 0.13.3 (2023-12-17)
1443

1544
### Features

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "knope"
33
description = "A command line tool for automating common development tasks"
4-
version = "0.13.3"
4+
version = "0.13.4"
55
authors = ["Dylan Anthony <[email protected]>"]
66
edition = "2021"
77
license = "MIT"

0 commit comments

Comments
 (0)