Upgrade TagLib to 1.12

This commit is contained in:
Deluan 2021-05-14 14:31:07 -04:00
parent 39d68e8287
commit 3cac00ad13
3 changed files with 4 additions and 4 deletions

View File

@ -128,7 +128,7 @@ jobs:
- name: Run GoReleaser - SNAPSHOT
if: startsWith(github.ref, 'refs/tags/') != true
uses: docker://deluan/ci-goreleaser:1.16.3-1
uses: docker://deluan/ci-goreleaser:1.16.4-1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
@ -136,7 +136,7 @@ jobs:
- name: Run GoReleaser - RELEASE
if: startsWith(github.ref, 'refs/tags/')
uses: docker://deluan/ci-goreleaser:1.16.3-1
uses: docker://deluan/ci-goreleaser:1.16.4-1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:

View File

@ -4,7 +4,7 @@ NODE_VERSION=$(shell cat .nvmrc)
GIT_SHA=$(shell git rev-parse --short HEAD)
GIT_TAG=$(shell git describe --tags `git rev-list --tags --max-count=1`)
CI_RELEASER_VERSION=1.16.3-1 ## https://github.com/navidrome/ci-goreleaser
CI_RELEASER_VERSION=1.16.4-1 ## https://github.com/navidrome/ci-goreleaser
setup: check_env download-deps ##@1_Run_First Install dependencies and prepare development environment
@echo Downloading Node dependencies...

View File

@ -42,7 +42,7 @@ var _ = Describe("taglibExtractor", func() {
Expect(m.Title()).To(BeEmpty())
Expect(m.HasPicture()).To(BeFalse())
Expect(m.Duration()).To(Equal(float32(1)))
Expect(m.BitRate()).To(Equal(39))
Expect(m.BitRate()).To(Equal(18))
Expect(m.Suffix()).To(Equal("ogg"))
Expect(m.FilePath()).To(Equal("tests/fixtures/test.ogg"))
Expect(m.Size()).To(Equal(int64(5065)))