Skip to content

Commit

Permalink
chore: prepare release 0.13.4 (#782)
Browse files Browse the repository at this point in the history
This PR was created by Knope. Merging it will create a new release

### Features

#### Gitea support

PR #759 closed issue #743. Thank you, @FallenValkyrie!

- Added Support for Gitea in the `CreatePullRequest` step
- Added Support for Gitea in the `Release` step
- Added A new `SelectGiteaIssue` step
- Add support to generate Gitea config from known public Gitea instances

To use these new steps, just add a new section to your configuration,
like this:

```toml
[gitea]
repo = "knope"
owner = "knope-dev"
host = "https://codeberg.org"
```

You can now use the supported steps in the same way as their GitHub
equivalents.

> [!TIP]
> Knope can now generate a configuration for you, if your repository's
remote is one of the known
public Gitea instances. Currently only [Codeberg](https://codeberg.org)
is supported,
but feel free to add more
[here](https://github.com/knope-dev/knope/blob/main/src/config/toml/config.rs#L90).

---------

Co-authored-by: GitHub <[email protected]>
Co-authored-by: Dylan Anthony <[email protected]>
  • Loading branch information
3 people authored Jan 13, 2024
1 parent 1ea8158 commit 68361b6
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 29 deletions.
28 changes: 0 additions & 28 deletions .changeset/gitea_support.md

This file was deleted.

29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,35 @@ The results are changes to the current directory, calls to external commands, an
Notably, anything written to standard output or standard error
(what you see in the terminal) is _not_ considered part of the public API and may change between any versions.

## 0.13.4 (2024-01-13)

### Features

#### Gitea support

PR #759 closed issue #743. Thank you, @FallenValkyrie!

- Added Support for Gitea in the `CreatePullRequest` step
- Added Support for Gitea in the `Release` step
- Added A new `SelectGiteaIssue` step
- Add support to generate Gitea config from known public Gitea instances

To use these new steps, just add a new section to your configuration, like this:

```toml
[gitea]
repo = "knope"
owner = "knope-dev"
host = "https://codeberg.org"
```

You can now use the supported steps in the same way as their GitHub equivalents.

> [!TIP]
> Knope can now generate a configuration for you, if your repository's remote is one of the known
> public Gitea instances. Currently only [Codeberg](https://codeberg.org) is supported,
> but feel free to add more [here](https://github.com/knope-dev/knope/blob/main/src/config/toml/config.rs#L90).
## 0.13.3 (2023-12-17)

### Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "knope"
description = "A command line tool for automating common development tasks"
version = "0.13.3"
version = "0.13.4"
authors = ["Dylan Anthony <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 68361b6

Please sign in to comment.