mirror of
https://github.com/GuillemCastro/spotify-dl.git
synced 2025-04-19 07:08:29 +02:00
Compare commits
No commits in common. "master" and "v0.5.0" have entirely different histories.
4 changed files with 8 additions and 16 deletions
9
.github/workflows/create-release.yml
vendored
9
.github/workflows/create-release.yml
vendored
|
@ -63,7 +63,11 @@ 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 }}
|
- name: Create tag
|
||||||
|
uses: rickstaa/action-create-tag@v1
|
||||||
|
with:
|
||||||
|
tag: v${{ steps.cargo-bump.outputs.new_version }}
|
||||||
|
message: "Bump version to v${{ steps.cargo-bump.outputs.new_version }}"
|
||||||
|
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -72,7 +76,7 @@ jobs:
|
||||||
needs: bump-version
|
needs: bump-version
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: v${{ needs.bump-version.outputs.new_version }}
|
ref: v${{ needs.bump-version.outputs.new_version }}
|
||||||
- name: Update CHANGELOG
|
- name: Update CHANGELOG
|
||||||
|
@ -81,7 +85,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
token: ${{ github.token }}
|
token: ${{ github.token }}
|
||||||
tag: v${{ needs.bump-version.outputs.new_version }}
|
tag: v${{ needs.bump-version.outputs.new_version }}
|
||||||
includeInvalidCommits: true
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
|
|
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,11 +0,0 @@
|
||||||
# Changelog
|
|
||||||
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.5.0] - 2024-05-17
|
|
||||||
### :sparkles: New Features
|
|
||||||
- [`ad9288d`](https://github.com/GuillemCastro/spotify-dl/commit/ad9288d243c393ea6c5b283de9c8ccd53de8ee0c) - No native dependencies *(commit by [@GuillemCastro](https://github.com/GuillemCastro))*
|
|
||||||
|
|
||||||
[v0.5.0]: https://github.com/GuillemCastro/spotify-dl/compare/v0.2.1...v0.5.0
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -2064,7 +2064,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spotify-dl"
|
name = "spotify-dl"
|
||||||
version = "0.5.4"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "spotify-dl"
|
name = "spotify-dl"
|
||||||
version = "0.5.4"
|
version = "0.4.0"
|
||||||
authors = ["Guillem Castro <guillemcastro4@gmail.com>"]
|
authors = ["Guillem Castro <guillemcastro4@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
Loading…
Add table
Reference in a new issue