mirror of
https://github.com/GuillemCastro/spotify-dl.git
synced 2025-04-11 11:53:58 +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_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
|
||||||
- name: Create tag
|
tagging_message: v${{ steps.cargo-bump.outputs.new_version }}
|
||||||
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
|
||||||
|
@ -76,7 +72,7 @@ jobs:
|
||||||
needs: bump-version
|
needs: bump-version
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: v${{ needs.bump-version.outputs.new_version }}
|
ref: v${{ needs.bump-version.outputs.new_version }}
|
||||||
- name: Update CHANGELOG
|
- name: Update CHANGELOG
|
||||||
|
@ -85,6 +81,7 @@ 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
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]]
|
[[package]]
|
||||||
name = "spotify-dl"
|
name = "spotify-dl"
|
||||||
version = "0.4.0"
|
version = "0.5.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "spotify-dl"
|
name = "spotify-dl"
|
||||||
version = "0.4.0"
|
version = "0.5.4"
|
||||||
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