Skip to content

Commit ec33d97

Browse files
committed
Prepare upgrading to version 0.2.0
1 parent c2011e8 commit ec33d97

File tree

10 files changed

+27
-11
lines changed

10 files changed

+27
-11
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.1.9"
10+
version = "0.2.0"
1111
authors = ["marin-m"]
1212
edition = "2018"
1313

packaging/archlinux-git/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pkgname=songrec-git
22
_pkgname=songrec
3-
pkgver=r118.0362f71
3+
pkgver=r137.c2011e8
44
pkgrel=1
55
provides=('songrec')
66
conflicts=('songrec')

packaging/archlinux/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pkgname=songrec
22
_pkgname=SongRec
3-
pkgver=0.1.9
3+
pkgver=0.2.0
44
pkgrel=1
55
provides=('songrec')
66
conflicts=('songrec-git')

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.1.9"
20+
cp -ra ../../ "${temp_dir}/songrec-0.2.0"
2121

22-
cd "${temp_dir}/songrec-0.1.9"
22+
cd "${temp_dir}/songrec-0.2.0"
2323

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

packaging/ppa/debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
songrec (0.2.0) bionic; urgency=low
2+
3+
* Add Japanese and Italian translations.
4+
* Fix PipeWire compatibility.
5+
* Add support for a possible XDG action for recognizing from a file.
6+
7+
-- Marin <marin-m@users.noreply.github.com> Fri, 27 Aug 2021 09:37:00 +0200
8+
19
songrec (0.1.9) bionic; urgency=low
210

311
* Add French and Dutch translations.

packaging/ppa/upload_source_package.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ for version in bionic focal groovy hirsute impish; do
2121

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

24-
cp -ra ../../ "${temp_dir}/songrec-0.1.9${version}"
24+
cp -ra ../../ "${temp_dir}/songrec-0.2.0${version}"
2525

26-
cd "${temp_dir}/songrec-0.1.9${version}"
26+
cd "${temp_dir}/songrec-0.2.0${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 groovy hirsute impish; do
4949

5050
# Push to Launchpad
5151

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

5454
cd "${ORIG_DIR}"
5555

56-
rm -rf "${temp_dir}/songrec-0.1.9${version}"
56+
rm -rf "${temp_dir}/songrec-0.2.0${version}"
5757

5858
done
5959

packaging/rootfs/usr/share/applications/com.github.marinm.songrec.desktop

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[Desktop Entry]
2+
Version=1.0
23
Name=SongRec
34
Comment=An open-source Shazam client for Linux, written in Rust
45
Type=Application

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.2.0" date="2021-08-27">
32+
<description>
33+
<p>- Add Japanese and Italian translations.</p>
34+
<p>- Fix PipeWire compatibility.</p>
35+
<p>- Add support for a possible XDG action for recognizing from a file.</p>
36+
</description>
37+
</release>
3138
<release version="0.1.9" date="2021-08-20">
3239
<description>
3340
<p>- Add French and Dutch translations.</p>

packaging/snap/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.1.9' # just for humans, typically '1.2+git' or '1.3.2'
3+
version: '0.2.0' # 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:

0 commit comments

Comments
 (0)