diff --git a/ChangeLog b/ChangeLog index fd2f0c5..8c60080 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-05-10 Michael Herstine + + Cutting release 0.3.3 + + Merge branch 'rel-0.3.2' + 2024-05-09 Michael Herstine [#6] Update the test scripts for Arch packing. @@ -11,6 +17,7 @@ 2024-03-12 Michael Herstine Switching clap to a tilde version dependency; throwing-in a change to version.texi that got missed + 2023-12-29 Michael Herstine Cutting release 0.3.2 diff --git a/README.org b/README.org index c6a668f..7817b10 100644 --- a/README.org +++ b/README.org @@ -2,7 +2,7 @@ #+AUTHOR: Michael Herstine #+DESCRIPTION: mpdpopm #+EMAIL: sp1ff@pobox.com -#+DATE: <2024-05-09 Thu 21:10> +#+DATE: <2024-05-10 Fri 07:09> #+AUTODATE: t * Introduction @@ -60,10 +60,10 @@ Thanks to a suggestion by [[https://github.com/m040601][m040601]], you can down #+BEGIN_SRC bash cd /tmp -curl -L --output mpdpopm-0.3.2.tar.gz https://github.com/sp1ff/mpdpopm/releases/download/0.3.2/mpdpopm-0.3.2-x86_64-unknown-linux.tar.gz -tar xf mpdpopm-0.3.2.tar.gz -tree mpdpopm-0.3.2-x86_64-unknown-linux/ -mpdpopm-0.3.2-x86_64-unknown-linux/ +curl -L --output mpdpopm-0.3.3.tar.gz https://github.com/sp1ff/mpdpopm/releases/download/0.3.3/mpdpopm-0.3.3-x86_64-unknown-linux.tar.gz +tar xf mpdpopm-0.3.3.tar.gz +tree mpdpopm-0.3.3-x86_64-unknown-linux/ +mpdpopm-0.3.3-x86_64-unknown-linux/ ├── bin │ ├── mppopm │ └── mppopmd @@ -93,8 +93,8 @@ If you're running on a Debian-based Linux distribution, and you're on an x86_64 #+BEGIN_SRC bash cd /tmp -curl -L -O https://github.com/sp1ff/mpdpopm/releases/download/0.3.2/mpdpopm_0.3.2_amd64.deb -sudo dpkg -i mpdpopm_0.3.2_amd64.deb +curl -L -O https://github.com/sp1ff/mpdpopm/releases/download/0.3.3/mpdpopm_0.3.3_amd64.deb +sudo dpkg -i mpdpopm_0.3.3_amd64.deb #+END_SRC The binaries will be placed in =/usr/local/bin=, and you can proceed to [[#getting_started][Getting Started]], below. @@ -109,9 +109,9 @@ If you've got the Rust toolchain as well as Autotools installed, you can build f #+BEGIN_SRC bash cd /tmp -curl -L -O https://github.com/sp1ff/mpdpopm/releases/download/0.3.2/mpdpopm-0.3.2.tar.xz -tar xf mpdpopm-0.3.2.tar.xz -cd mpdpopm-0.3.2 +curl -L -O https://github.com/sp1ff/mpdpopm/releases/download/0.3.3/mpdpopm-0.3.3.tar.xz +tar xf mpdpopm-0.3.3.tar.xz +cd mpdpopm-0.3.3 ./configure make make check diff --git a/THANKS b/THANKS index 3fe1e0f..db8bb90 100644 --- a/THANKS +++ b/THANKS @@ -1,9 +1,10 @@ +Thanks to m040601 for his detailed +feedback on the initial mpdpopm docs, as well as his explainer +on the AUR. + Thanks to tanshoku for his suggested systemd unit file. -Thanks to m040601 for his detailed -feedback on the initial mpdpopm docs. - Thanks to Vincent Petithory for `mpdfav'. Thanks to Ali Polatel for `mpdcron'. diff --git a/doc/mpdpopm.texi b/doc/mpdpopm.texi index fc723b0..0459684 100644 --- a/doc/mpdpopm.texi +++ b/doc/mpdpopm.texi @@ -13,7 +13,7 @@ @copying This manual corresponds to mpdpopm version @value{VERSION}. -Copyright @copyright{} 2021-2023 Michael Herstine +Copyright @copyright{} 2021-2024 Michael Herstine @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/doc/version.texi b/doc/version.texi index 9ed0582..91b5c6b 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -1,4 +1,4 @@ -@set UPDATED 29 December 2023 -@set UPDATED-MONTH December 2023 +@set UPDATED 10 May 2024 +@set UPDATED-MONTH May 2024 @set EDITION 0.3.3 @set VERSION 0.3.3 diff --git a/mpdpopm/src/bin/mppopm.rs b/mpdpopm/src/bin/mppopm.rs index 54ed5fa..53d0695 100644 --- a/mpdpopm/src/bin/mppopm.rs +++ b/mpdpopm/src/bin/mppopm.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/bin/mppopmd.rs b/mpdpopm/src/bin/mppopmd.rs index 3908eac..9fa04be 100644 --- a/mpdpopm/src/bin/mppopmd.rs +++ b/mpdpopm/src/bin/mppopmd.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/clients.rs b/mpdpopm/src/clients.rs index 5bdf15c..eeda75c 100644 --- a/mpdpopm/src/clients.rs +++ b/mpdpopm/src/clients.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/commands.rs b/mpdpopm/src/commands.rs index 66cf7a7..47756ef 100644 --- a/mpdpopm/src/commands.rs +++ b/mpdpopm/src/commands.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/config.rs b/mpdpopm/src/config.rs index f5dc983..ae089af 100644 --- a/mpdpopm/src/config.rs +++ b/mpdpopm/src/config.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2021-2023 Michael Herstine +// Copyright (C) 2021-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/filters.lalrpop b/mpdpopm/src/filters.lalrpop index ef90b71..058d665 100644 --- a/mpdpopm/src/filters.lalrpop +++ b/mpdpopm/src/filters.lalrpop @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine -*- mode: rust; rust-format-on-save: nil -*- +// Copyright (C) 2020-2024 Michael Herstine -*- mode: rust; rust-format-on-save: nil -*- // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/filters_ast.rs b/mpdpopm/src/filters_ast.rs index a8de12e..783da16 100644 --- a/mpdpopm/src/filters_ast.rs +++ b/mpdpopm/src/filters_ast.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/lib.rs b/mpdpopm/src/lib.rs index 12fe12c..031a6a0 100644 --- a/mpdpopm/src/lib.rs +++ b/mpdpopm/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/messages.rs b/mpdpopm/src/messages.rs index 691a801..da7f22e 100644 --- a/mpdpopm/src/messages.rs +++ b/mpdpopm/src/messages.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/playcounts.rs b/mpdpopm/src/playcounts.rs index efa14e0..d117ef6 100644 --- a/mpdpopm/src/playcounts.rs +++ b/mpdpopm/src/playcounts.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. // diff --git a/mpdpopm/src/ratings.rs b/mpdpopm/src/ratings.rs index 8aef524..ad111bb 100644 --- a/mpdpopm/src/ratings.rs +++ b/mpdpopm/src/ratings.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2020-2023 Michael Herstine +// Copyright (C) 2020-2024 Michael Herstine // // This file is part of mpdpopm. //