Compare commits

..

No commits in common. "master" and "v0.5.3" have entirely different histories.

3 changed files with 8 additions and 4 deletions

View file

@ -63,7 +63,6 @@ jobs:
commit_user_email: "github-actions[bot]@users.noreply.github.com" commit_user_email: "github-actions[bot]@users.noreply.github.com"
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>" commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
branch: master branch: master
tagging_message: v${{ steps.cargo-bump.outputs.new_version }}
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -74,7 +73,12 @@ jobs:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
ref: v${{ needs.bump-version.outputs.new_version }} fetch-depth: 0
- name: Create tag
uses: rickstaa/action-create-tag@v1.7.2
with:
tag: v${{ needs.bump-version.outputs.new_version }}
message: "Bump version to v${{ needs.bump-version.outputs.new_version }}"
- name: Update CHANGELOG - name: Update CHANGELOG
id: changelog id: changelog
uses: requarks/changelog-action@v1 uses: requarks/changelog-action@v1

2
Cargo.lock generated
View file

@ -2064,7 +2064,7 @@ dependencies = [
[[package]] [[package]]
name = "spotify-dl" name = "spotify-dl"
version = "0.5.4" version = "0.5.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "spotify-dl" name = "spotify-dl"
version = "0.5.4" version = "0.5.2"
authors = ["Guillem Castro <guillemcastro4@gmail.com>"] authors = ["Guillem Castro <guillemcastro4@gmail.com>"]
edition = "2021" edition = "2021"
readme = "README.md" readme = "README.md"