Skip to content

Commit 0730c5b

Browse files
committed
Prepare the release of version 0.3.1
1 parent 8e106e5 commit 0730c5b

File tree

9 files changed

+28
-13
lines changed

9 files changed

+28
-13
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository = "https://github.com/marin-m/SongRec"
77
readme = "README.md"
88
keywords = ["shazam", "audio", "audio-fingerprinting"]
99
categories = ["multimedia::audio", "command-line-utilities"]
10-
version = "0.3.0"
10+
version = "0.3.1"
1111
authors = ["marin-m"]
1212
edition = "2018"
1313

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ sudo pacman -S songrec
3535
songrec
3636
```
3737

38-
Using apt with PPA (Ubuntu, supported 18.04, 20.04, 20.10, 21.04, 21.10):
38+
Using apt with PPA (Ubuntu, supported 18.04, 20.04, 20.10, 21.04, 21.10, 22.04):
3939

4040
```bash
4141
sudo apt-add-repository ppa:marin-m/songrec -y -u

packaging/ppa/build_binary_package.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ trap cleanup_dirs INT TERM
1717

1818
rm -rf ../../target/ ../../vendor/ ../../.flatpak-builder ../flatpak/.flatpak-builder ../../repo
1919

20-
cp -ra ../../ "${temp_dir}/songrec-0.3.0"
20+
cp -ra ../../ "${temp_dir}/songrec-0.3.1"
2121

22-
cd "${temp_dir}/songrec-0.3.0"
22+
cd "${temp_dir}/songrec-0.3.1"
2323

2424
mkdir -p .cargo
2525
cargo vendor --locked vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > .cargo/config

packaging/ppa/debian/changelog

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1+
songrec (0.3.1) bionic; urgency=low
2+
3+
* Fix the behavior of the new `recognize` command, when recognizing from a file.
4+
* Add album artwork, if it exists, to the desktop notification when a song is recognized (thanks to @damonhayhurst).
5+
* Update the Dutch translation (thanks to @Vistaus).
6+
7+
-- Marin <marin-m@users.noreply.github.com> Fri, 22 Apr 2022 09:02:00 +0200
8+
19
songrec (0.3.0) bionic; urgency=low
210

311
* Introduce a new command-line interface allowing to use microphone recognition from the command line, with the `recognize` and `listen` commands (thanks to @Hummer12007), keeping older command backwards compatibility.
412
* Update the CSV export format in order to introduce new "`track_key`", "`release_year`" and "`genre`" columns (thanks to @tyd), where `track_key` is an identifier internal to the Shazam database.
513
* Allow exposing song metadata through the standard DBus MPRIS interface (thanks to @Hummer12007).
614
* Improve source code structure in order to split the dual CLI/GUI parts from the core thread communication and fingerprinting parts and from other platform-dependant utility code.
715
* Update certain dependent crates to more recent minor versions, among other possible things in order to accept a higher LibreSSL version.
8-
* Add the program version without the program help output (see the `-h` or `-V', `--version` options).
16+
* Add the program version without the program help output (see the `-h` or `-V`, `--version` options).
917
* Add a Polish translation (thanks to @qarmin).
1018
* Update the French translation according to recent changes.
1119

packaging/ppa/upload_source_package.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ function cleanup_dirs {
1717

1818
trap cleanup_dirs INT TERM
1919

20-
for version in bionic focal hirsute impish; do
20+
for version in bionic focal hirsute impish jammy; do
2121

2222
rm -rf ../../target/ ../../vendor/ ../../.flatpak-builder ../flatpak/.flatpak-builder ../../repo ../../.cargo
2323

24-
cp -ra ../../ "${temp_dir}/songrec-0.3.0${version}"
24+
cp -ra ../../ "${temp_dir}/songrec-0.3.1${version}"
2525

26-
cd "${temp_dir}/songrec-0.3.0${version}"
26+
cd "${temp_dir}/songrec-0.3.1${version}"
2727

2828
mkdir -p .cargo
2929
cargo vendor --locked vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > .cargo/config
@@ -49,11 +49,11 @@ for version in bionic focal hirsute impish; do
4949

5050
# Push to Launchpad
5151

52-
dput ppa:marin-m/songrec "../../songrec_0.3.0${version}_source.changes"
52+
dput ppa:marin-m/songrec "../../songrec_0.3.1${version}_source.changes"
5353

5454
cd "${ORIG_DIR}"
5555

56-
rm -rf "${temp_dir}/songrec-0.3.0${version}"
56+
rm -rf "${temp_dir}/songrec-0.3.1${version}"
5757

5858
done
5959

packaging/rootfs/usr/share/metainfo/com.github.marinm.songrec.metainfo.xml

+7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ https://hughsie.github.io/oars/index.html
2828
-->
2929
<content_rating type="oars-1.0" />
3030
<releases>
31+
<release version="0.3.1" date="2022-04-22">
32+
<description>
33+
<p>- Fix the behavior of the new "recognize" command, when recognizing from a file.</p>
34+
<p>- Add album artwork, if it exists, to the desktop notification when a song is recognized (thanks to @damonhayhurst).</p>
35+
<p>- Update the Dutch translation (thanks to @Vistaus).</p>
36+
</description>
37+
</release>
3138
<release version="0.3.0" date="2021-12-26">
3239
<description>
3340
<p>- Introduce a new command-line interface allowing to use microphone recognition from the command line, with the "recognize" and "listen" commands (thanks to @Hummer12007), keeping older command backwards compatibility.</p>

packaging/snap-not-working/snapcraft.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: songrec # you probably want to 'snapcraft register <name>'
22
base: core20 # the base snap is the execution environment for this snap
3-
version: '0.3.0' # just for humans, typically '1.2+git' or '1.3.2'
3+
version: '0.3.1' # just for humans, typically '1.2+git' or '1.3.2'
44
summary: An open-source, unofficial Shazam client for Linux, written in Rust # 79 char long summary
55
description: |
66
Features:

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use clap::{App, Arg};
5252
macro_rules! base_app {
5353
() => {
5454
App::new("SongRec")
55-
.version("0.3.0")
55+
.version("0.3.1")
5656
.about(gettext("An open-source Shazam client for Linux, written in Rust.").as_str())
5757
.subcommand(
5858
App::new("listen")

0 commit comments

Comments
 (0)