Skip to content

Commit 46d44e9

Browse files
committed
Version 1.10.2
1 parent af4c2e5 commit 46d44e9

File tree

5 files changed

+42
-20
lines changed

5 files changed

+42
-20
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Audiowaveform Version History
22

3+
## v1.10.2 (2025-04-18)
4+
5+
* The `--bar-gap` option can now be set to zero.
6+
37
## v1.10.1 (2024-01-26)
48

59
* Fixed `--input-filename` and `--output-filename` options to accept

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,4 +565,4 @@ Thank you to all our [contributors](https://github.com/bbc/audiowaveform/graphs/
565565

566566
## Copyright
567567

568-
Copyright 2013-2024 British Broadcasting Corporation
568+
Copyright 2013-2025 British Broadcasting Corporation

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.1
1+
1.10.2

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
audiowaveform (1.10.2-1RELEASE1) RELEASE; urgency=low
2+
3+
* Debian package for release 1.10.2
4+
5+
-- Chris Needham <[email protected]> Fri, 18 Apr 2025 14:45:00 +0100
6+
17
audiowaveform (1.10.1-1RELEASE1) RELEASE; urgency=low
28

39
* Debian package for release 1.10.1

ubuntu/package.sh

Lines changed: 30 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99

1010
PROJECT=audiowaveform
1111
[email protected]:bbc/${PROJECT}.git
12-
TAG=1.10.1
12+
TAG=1.10.2
1313
SOURCE_DIR=${PROJECT}_${TAG}
1414
TARBALL=${SOURCE_DIR}.orig.tar.gz
1515
PACKAGES_DIR=packages
@@ -29,9 +29,10 @@ PPA=ppa:chris-needham/ppa
2929
# 21.10 Impish (obsolete and will not accept new uploads)
3030
# 22.04 Jammy
3131
# 22.10 Kinetic (obsolete and will not accept new uploads)
32-
# 23.04 Lunar
32+
# 23.04 Lunar (obsolete and will not accept new uploads)
33+
# 24.04 Noble
3334

34-
declare -a ubuntu_releases=("trusty" "xenial" "bionic" "focal" "jammy" "lunar")
35+
declare -a ubuntu_releases=("trusty" "xenial" "bionic" "focal" "jammy" "noble")
3536

3637
cleanup() {
3738
rm -rf ${SOURCE_DIR}/.git
@@ -94,23 +95,34 @@ movefiles() {
9495
}
9596

9697
debs() {
97-
for ubuntu_release in "${ubuntu_releases[@]}"
98-
do
99-
fixup "$ubuntu_release"
98+
if [ -n "$1" ]; then
99+
cp packages/${TARBALL} .
100+
fixup "$1"
100101
deb
101-
movefiles "$ubuntu_release"
102-
done
102+
movefiles "$1"
103+
else
104+
for ubuntu_release in "${ubuntu_releases[@]}"
105+
do
106+
fixup "$ubuntu_release"
107+
deb
108+
movefiles "$ubuntu_release"
109+
done
103110

104-
rm ${TARBALL}
111+
rm ${TARBALL}
112+
fi
105113
}
106114

107115
publish() {
108116
pushd ${PACKAGES_DIR}
109117

110-
for ubuntu_release in "${ubuntu_releases[@]}"
111-
do
112-
dput ${PPA} ${PROJECT}_${TAG}-1${ubuntu_release}1_source.changes
113-
done
118+
if [ -n "$1" ]; then
119+
dput ${PPA} ${PROJECT}_${TAG}-1${1}1_source.changes
120+
else
121+
for ubuntu_release in "${ubuntu_releases[@]}"
122+
do
123+
dput ${PPA} ${PROJECT}_${TAG}-1${ubuntu_release}1_source.changes
124+
done
125+
fi
114126

115127
popd
116128
}
@@ -126,16 +138,16 @@ case "$1" in
126138
sourcepackage
127139
;;
128140

129-
debs)
130-
debs
141+
foo)
142+
foo "$2"
131143
;;
132144

133-
deb)
134-
deb
145+
debs)
146+
debs "$2"
135147
;;
136148

137149
publish)
138-
publish
150+
publish "$2"
139151
;;
140152

141153
clean)

0 commit comments

Comments
 (0)