Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 0.10.0.1 #143

Merged
merged 3 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
- '8.6'
- '8.8'
- '8.10'
- '9.4.8'
- '9.8.2'
- 'latest'
cabal:
- 'latest'
- '2.4'
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* v0.10.0.1
- Fix build issues caused by removed symbols in dependencies
- Adjust `text` bounds

* v0.10.0.0 2021-01-25
- Require MPD version 0.19 or later.
- Breaking: `list` now takes a `Query` instead of a `Maybe Artist`, and lists the requested tag of songs matching the query.
Expand Down
12 changes: 7 additions & 5 deletions libmpd.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-Version: 2.4
Name: libmpd
Version: 0.10.0.0
Version: 0.10.0.1
Synopsis: An MPD client library.
Description: A client library for MPD, the Music Player Daemon.
Category: Network, Sound
Expand All @@ -20,14 +20,16 @@ Stability: beta
Homepage: http://github.com/vimus/libmpd-haskell#readme
Bug-reports: http://github.com/vimus/libmpd-haskell/issues

Tested-With: GHC ==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.3
Tested-With: GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.3, GHC==9.8.2
Build-Type: Simple

Extra-Source-Files:
README.md
changelog.md
tests/*.hs

Extra-Doc-Files:
changelog.md

Source-Repository head
type: git
location: https://github.com/vimus/libmpd-haskell
Expand All @@ -50,7 +52,7 @@ Library

-- Additional dependencies
, data-default-class >= 0.0.1 && < 1
, network >= 2.6.3.5
, network >= 3 && < 3.3
, safe-exceptions >= 0.1 && < 0.2
, utf8-string >= 0.3.1 && < 1.1

Expand Down Expand Up @@ -103,7 +105,7 @@ Test-Suite specs
Default-Language: Haskell2010
Main-Is: Main.hs
Hs-Source-Dirs: src tests
cpp-options: -DTEST -Wall -Werror
cpp-options: -DTEST
ghc-options: -fno-warn-missing-signatures

Build-Depends:
Expand Down
1 change: 1 addition & 0 deletions tests/StringConn.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module StringConn where

import Control.Applicative
import Prelude hiding (exp)
import Control.Monad
import Control.Monad.Except
import Control.Monad.Identity
import Control.Monad.Reader
Expand Down
Loading