mirror of
https://github.com/GuillemCastro/spotify-dl.git
synced 2025-04-04 08:53:59 +02:00
Compare commits
10 commits
Author | SHA1 | Date | |
---|---|---|---|
|
afafa36263 | ||
|
9728a6457d | ||
|
feed60534a | ||
|
a5c3225ea3 | ||
|
7c7870c044 | ||
|
7fb4073633 | ||
|
455437ad04 | ||
|
e4807e6834 | ||
|
3325ec3ccd | ||
|
ab33af0e99 |
4 changed files with 16 additions and 8 deletions
9
.github/workflows/create-release.yml
vendored
9
.github/workflows/create-release.yml
vendored
|
@ -63,11 +63,7 @@ jobs:
|
|||
commit_user_email: "github-actions[bot]@users.noreply.github.com"
|
||||
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
|
||||
branch: master
|
||||
- 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 }}"
|
||||
tagging_message: v${{ steps.cargo-bump.outputs.new_version }}
|
||||
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -76,7 +72,7 @@ jobs:
|
|||
needs: bump-version
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: v${{ needs.bump-version.outputs.new_version }}
|
||||
- name: Update CHANGELOG
|
||||
|
@ -85,6 +81,7 @@ jobs:
|
|||
with:
|
||||
token: ${{ github.token }}
|
||||
tag: v${{ needs.bump-version.outputs.new_version }}
|
||||
includeInvalidCommits: true
|
||||
- name: Create Release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
|
|
11
CHANGELOG.md
Normal file
11
CHANGELOG.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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]]
|
||||
name = "spotify-dl"
|
||||
version = "0.4.0"
|
||||
version = "0.5.4"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "spotify-dl"
|
||||
version = "0.4.0"
|
||||
version = "0.5.4"
|
||||
authors = ["Guillem Castro <guillemcastro4@gmail.com>"]
|
||||
edition = "2021"
|
||||
readme = "README.md"
|
||||
|
|
Loading…
Add table
Reference in a new issue