Skip to content

Commit

Permalink
Upd: set version to 18.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Nov 17, 2024
1 parent ff8927e commit 18cfcc3
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ https://github.com/jcorporation/myMPD/

***

## myMPD v18.2.2 (not yet released)

This is a small bug fix release.

### Changelog

***

## myMPD v18.2.1 (2024-11-15)

This is a small bug fix release.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cmake_policy(SET CMP0003 NEW)
# myMPD is written in C
# supported compilers: gcc, clang
project(mympd
VERSION 18.2.1
VERSION 18.2.2
LANGUAGES C
)

Expand Down
2 changes: 1 addition & 1 deletion contrib/man/mympd-config.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for mympd-config.
.\" Contact <[email protected]> to correct errors or typos.
.TH man 1 "15 Nov 2024" "18.2.1" "mympd-config man page"
.TH man 1 "17 Nov 2024" "18.2.2" "mympd-config man page"

.SH NAME
mympd-config \- mympd configuration tool
Expand Down
2 changes: 1 addition & 1 deletion contrib/man/mympd-script.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for mympd-script.
.\" Contact <[email protected]> to correct errors or typos.
.TH man 1 "15 Nov 2024" "18.2.1" "mympd-script man page"
.TH man 1 "17 Nov 2024" "18.2.2" "mympd-script man page"

.SH NAME
mympd-script \- mympd command line tool to execute scripts
Expand Down
2 changes: 1 addition & 1 deletion contrib/man/mympd.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for mympd.
.\" Contact <[email protected]> to correct errors or typos.
.TH man 1 "15 Nov 2024" "18.2.1" "mympd man page"
.TH man 1 "17 Nov 2024" "18.2.2" "mympd man page"

.SH NAME
myMPD \- standalone and mobile friendly web mpd client
Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/alpine/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Maintainer: Juergen Mang <[email protected]>
#
pkgname=mympd
pkgver=18.2.1
pkgver=18.2.2
pkgrel=0
pkgdesc="myMPD is a standalone and mobile friendly web-based MPD client."
url="https://jcorporation.github.io/myMPD/"
Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/arch/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Juergen Mang <[email protected]>

pkgname=mympd
pkgver=18.2.1
pkgver=18.2.2
pkgrel=1
pkgdesc="A standalone and mobile friendly web-based MPD client."
arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
Expand Down
4 changes: 2 additions & 2 deletions contrib/packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mympd (18.2.1-1) unstable; urgency=medium
mympd (18.2.2-1) unstable; urgency=medium

* Release from master

-- Juergen Mang <[email protected]> Fri, 15 Nov 2024 17:11:31 +0100
-- Juergen Mang <[email protected]> Sun, 17 Nov 2024 13:11:51 +0100
2 changes: 1 addition & 1 deletion contrib/packaging/freebsd/multimedia/mympd/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PORTNAME= myMPD
DISTVERSIONPREFIX= v
DISTVERSION= 18.2.1
DISTVERSION= 18.2.2
CATEGORIES= multimedia

MAINTAINER= [email protected]
Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/openwrt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME := mympd
PKG_VERSION := 18.2.1
PKG_VERSION := 18.2.2
PKG_RELEASE := 1

PKG_SOURCE := $(PKG_NAME)-$(PKG_VERSION).tar.gz
Expand Down
4 changes: 2 additions & 2 deletions contrib/packaging/rpm/mympd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# (c) 2018-2024 Juergen Mang <[email protected]>

Name: mympd
Version: 18.2.1
Version: 18.2.2
Release: 0
License: GPL-3.0-or-later
Group: Productivity/Multimedia/Sound/Players
Expand Down Expand Up @@ -65,5 +65,5 @@ fi
%license LICENSE.md

%changelog
* Fri Nov 15 2024 Juergen Mang <[email protected]> 18.2.1-0
* Sun Nov 17 2024 Juergen Mang <[email protected]> 18.2.2-0
- Version from master
2 changes: 1 addition & 1 deletion docs/_includes/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.2.1
18.2.2
4 changes: 2 additions & 2 deletions htdocs/js/version.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const myMPDversion = '18.2.1';
const myMPDbuild = 'eaf3c073529785b2b2315df909d8ccbc20fe1082';
const myMPDversion = '18.2.2';
const myMPDbuild = 'ff8927ef20d7de936c947930d450f92cb2f821e9';

0 comments on commit 18cfcc3

Please sign in to comment.