Skip to content

Commit

Permalink
Version 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisn committed May 31, 2023
1 parent 2db1ab3 commit 2d29965
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Audiowaveform Version History

## v1.8.0 (2023-05-31)

* Added support for rendering waveforms as vertical bars. Use the
`--waveform-style bars` option, and the `--bar-style`,
`--bar-width`, and `--bar-gap` options to customize the image

## v1.7.1 (2023-03-19)

* Fixed waveform image generation when audio is read from a socket
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.1
1.8.0
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
audiowaveform (1.8.0-1RELEASE1) RELEASE; urgency=low

* Debian package for release 1.8.0

-- Chris Needham <chris@chrisneedham.com> Wed, 31 May 2023 23:20:00 +0000

audiowaveform (1.7.1-1RELEASE1) RELEASE; urgency=low

* Debian package for release 1.7.1
Expand Down
4 changes: 2 additions & 2 deletions rpm/build_rpm_amazon_linux_2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

set -e

AUDIOWAVEFORM_VERSION=1.7.1
AUDIOWAVEFORM_PACKAGE_VERSION=1.7.1
AUDIOWAVEFORM_VERSION=1.8.0
AUDIOWAVEFORM_PACKAGE_VERSION=1.8.0
IMAGE=audiowaveform_rpm
docker build -t $IMAGE -f Dockerfile-amazon-linux-2 --build-arg AUDIOWAVEFORM_VERSION=${AUDIOWAVEFORM_VERSION} --build-arg AUDIOWAVEFORM_PACKAGE_VERSION=${AUDIOWAVEFORM_PACKAGE_VERSION} .
CONTAINER_ID=`docker create $IMAGE`
Expand Down
4 changes: 2 additions & 2 deletions rpm/build_rpm_centos7.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

set -e

AUDIOWAVEFORM_VERSION=1.7.1
AUDIOWAVEFORM_PACKAGE_VERSION=1.7.1
AUDIOWAVEFORM_VERSION=1.8.0
AUDIOWAVEFORM_PACKAGE_VERSION=1.8.0
IMAGE=audiowaveform_rpm
docker build -t $IMAGE -f Dockerfile-centos7 --build-arg AUDIOWAVEFORM_VERSION=${AUDIOWAVEFORM_VERSION} --build-arg AUDIOWAVEFORM_PACKAGE_VERSION=${AUDIOWAVEFORM_PACKAGE_VERSION} .
CONTAINER_ID=`docker create $IMAGE`
Expand Down
4 changes: 2 additions & 2 deletions rpm/build_rpm_centos8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

set -e

AUDIOWAVEFORM_VERSION=1.7.1
AUDIOWAVEFORM_PACKAGE_VERSION=1.7.1
AUDIOWAVEFORM_VERSION=1.8.0
AUDIOWAVEFORM_PACKAGE_VERSION=1.8.0
IMAGE=audiowaveform_rpm
docker build -t $IMAGE -f Dockerfile-centos8 --build-arg AUDIOWAVEFORM_VERSION=${AUDIOWAVEFORM_VERSION} --build-arg AUDIOWAVEFORM_PACKAGE_VERSION=${AUDIOWAVEFORM_PACKAGE_VERSION} .
CONTAINER_ID=`docker create $IMAGE`
Expand Down
2 changes: 1 addition & 1 deletion ubuntu/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

PROJECT=audiowaveform
REPO=git@github.com:bbc/${PROJECT}.git
TAG=1.7.1
TAG=1.8.0
SOURCE_DIR=${PROJECT}_${TAG}
TARBALL=${SOURCE_DIR}.orig.tar.gz
PACKAGES_DIR=packages
Expand Down

0 comments on commit 2d29965

Please sign in to comment.