Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a766b395c1 | |||
| 1746869b45 | |||
|
|
533366b90b |
@@ -58,6 +58,15 @@ jobs:
|
||||
run: |
|
||||
git commit --amend --no-edit -m "$(git log -1 --pretty=%B) [skip ci]"
|
||||
|
||||
- name: Install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
|
||||
- name: Update the Cargo.lock
|
||||
run: |
|
||||
cargo update
|
||||
git add Cargo.lock
|
||||
git commit -m "chore: Bump the version in Cargo.lock"
|
||||
|
||||
- name: Get the new version tag
|
||||
id: version
|
||||
run: |
|
||||
@@ -84,8 +93,8 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ env.version }}
|
||||
name: "Release ${{ env.version }}"
|
||||
tag_name: v${{ env.version }}
|
||||
name: "Release v${{ env.version }}"
|
||||
body: ${{ env.changelog_body }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
||||
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## v0.3.2 (2024-11-26)
|
||||
|
||||
### Fix
|
||||
|
||||
- **ci**: Updated the Cargo.lock file [skip ci]
|
||||
- **ci**: Use a different GitHub action to release the crate to Crates.io [skip ci]
|
||||
- **ci**: Don't manually push the tags and let Commitizen do it [skip ci]
|
||||
|
||||
## v0.3.1 (2024-11-26)
|
||||
|
||||
### Fix
|
||||
|
||||
Generated
+1
-1
@@ -1353,7 +1353,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "managarr"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "managarr"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
|
||||
description = "A TUI and CLI to manage your Servarrs"
|
||||
keywords = ["managarr", "ratatui", "dashboard", "servarr", "tui"]
|
||||
|
||||
Reference in New Issue
Block a user