Skip to content

Commit

Permalink
Prepare releasing version 0.1.7, including the issue #37 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marin-m committed Apr 9, 2021
1 parent 9267feb commit 8acb73c
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/marin-m/SongRec"
readme = "README.md"
keywords = ["shazam", "audio", "audio-fingerprinting"]
categories = ["multimedia::audio", "command-line-utilities"]
version = "0.1.6"
version = "0.1.7"
authors = ["marin-m"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ yay -S songrec
songrec
```

Using apt with PPA (Ubuntu, supported 18.04, 20.04, 20.10, 21.04):
Using apt with PPA (Ubuntu, supported 18.04, 20.04, 20.10, 21.04, 21.10):

```bash
sudo apt-add-repository ppa:marin-m/songrec -y -u
Expand Down
2 changes: 1 addition & 1 deletion packaging/archlinux/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgname=songrec
_pkgname=SongRec
pkgver=0.1.6
pkgver=0.1.7
pkgrel=1
provides=('songrec')
conflicts=('songrec-git')
Expand Down
4 changes: 2 additions & 2 deletions packaging/ppa/build_binary_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ trap cleanup_dirs INT TERM

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

cp -ra ../../ "${temp_dir}/songrec-0.1.6"
cp -ra ../../ "${temp_dir}/songrec-0.1.7"

cd "${temp_dir}/songrec-0.1.6"
cd "${temp_dir}/songrec-0.1.7"

mkdir -p .cargo
cargo vendor vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > .cargo/config
Expand Down
7 changes: 7 additions & 0 deletions packaging/ppa/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
songrec (0.1.7) bionic; urgency=low

* Display a clean "Shazam servers are not reachable, are you connected?" message on the GUI when the computer has been offline, rather than showing low-level errors.
* Improve cross-platform support.

-- Marin <[email protected]> Fri, 09 Apr 2021 07:15:00 +0200

songrec (0.1.6) bionic; urgency=low

* Try to decode input files with FFMpeg when it is available on the target system, in order to support more audio and video formats when recognizing from a file.
Expand Down
10 changes: 5 additions & 5 deletions packaging/ppa/upload_source_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ function cleanup_dirs {

trap cleanup_dirs INT TERM

for version in bionic focal groovy hirsute; do
for version in bionic focal groovy hirsute gorilla; do

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

cp -ra ../../ "${temp_dir}/songrec-0.1.6${version}"
cp -ra ../../ "${temp_dir}/songrec-0.1.7${version}"

cd "${temp_dir}/songrec-0.1.6${version}"
cd "${temp_dir}/songrec-0.1.7${version}"

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

# Push to Launchpad

dput ppa:marin-m/songrec "../../songrec_0.1.6${version}_source.changes"
dput ppa:marin-m/songrec "../../songrec_0.1.7${version}_source.changes"

cd "${ORIG_DIR}"

rm -rf "${temp_dir}/songrec-0.1.6${version}"
rm -rf "${temp_dir}/songrec-0.1.7${version}"

done

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ https://hughsie.github.io/oars/index.html
-->
<content_rating type="oars-1.0" />
<releases>
<release version="0.1.7" date="2021-04-09">
<description>
<p>- Display a clean "Shazam servers are not reachable, are you connected?" message on the GUI when the computer has been offline, rather than showing low-level errors.</p>
<p>- Improve cross-platform support.</p>
</description>
</release>
<release version="0.1.6" date="2021-03-30">
<description>
<p>- Try to decode input files with FFMpeg when it is available on the target system, in order to support more audio and video formats when recognizing from a file.</p>
Expand Down
2 changes: 1 addition & 1 deletion packaging/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: songrec # you probably want to 'snapcraft register <name>'
base: core20 # the base snap is the execution environment for this snap
version: '0.1.6' # just for humans, typically '1.2+git' or '1.3.2'
version: '0.1.7' # just for humans, typically '1.2+git' or '1.3.2'
summary: An open-source, unofficial Shazam client for Linux, written in Rust # 79 char long summary
description: |
Features:
Expand Down

0 comments on commit 8acb73c

Please sign in to comment.