Skip to content

Commit c0e9100

Browse files
committed
adblock2privoxy: Update to version 2.1.1
1 parent adc858b commit c0e9100

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

adblock2privoxy-utils/adblock2privoxy-utils.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: adblock2privoxy-utils
2-
version: 2.1.0
2+
version: 2.1.1
33
cabal-version: >= 1.10
44
build-type: Simple
55
tested-with: GHC==8.10.7
@@ -25,7 +25,7 @@ executable adblock2privoxy-utils
2525
default-extensions:
2626
FlexibleInstances
2727
build-depends:
28-
base >= 4 && < 5,
28+
base >= 4 && < 9.9,
2929
pandoc,
3030
Cabal >=1.6,
3131
pandoc-types >=1.12.3,
@@ -45,4 +45,4 @@ source-repository this
4545
type: git
4646
location: https://github.com/essandess/adblock2privoxy.git
4747
subdir: adblock2privoxy-utils
48-
tag: v2.1.0
48+
tag: v2.1.1

adblock2privoxy/adblock2privoxy.cabal

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: adblock2privoxy
2-
version: 2.1.0
2+
version: 2.1.1
33
cabal-version: >= 1.10
44
build-type: Simple
55
tested-with:
6-
GHC==8.10.7
6+
GHC==9.6.3
77
author: Alexey Zubritsky <[email protected]>, Steven Thomas Smith <[email protected]>
88
data-files:
99
templates/ab2p.system.action,
@@ -64,7 +64,7 @@ executable adblock2privoxy
6464
GeneralizedNewtypeDeriving,
6565
FlexibleContexts
6666
build-depends:
67-
base >= 4 && < 5,
67+
base >= 4 && < 9.9,
6868
parsec,
6969
mtl,
7070
containers,
@@ -103,4 +103,4 @@ source-repository this
103103
type: git
104104
location: https://github.com/essandess/adblock2privoxy.git
105105
subdir: adblock2privoxy
106-
tag: v2.1.0
106+
tag: v2.1.1

adblock2privoxy/changelog

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.1.1
2+
* Fix compilation issues for ghc 9.6.3
3+
14
2.1.0
25
* Use TLS for CSS server to avoid mixed content errors
36
* Add --useHTTP option

adblock2privoxy/src/ParsecExt.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module ParsecExt (
1111
import Utils
1212
import Control.Applicative hiding (many)
1313
import Text.ParserCombinators.Parsec hiding ((<|>),State)
14-
import Control.Monad.Trans
14+
import Control.Monad
1515
import Control.Monad.RWS
1616
import Control.Monad.State
1717
import Data.Maybe

adblock2privoxy/src/PatternConverter.hs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ parseUrl
55
import InputParser
66
import Control.Applicative hiding (many)
77
import Text.ParserCombinators.Parsec hiding (Line, (<|>))
8+
import Control.Monad
89
import Control.Monad.State
910
import Data.List
1011
import Data.Maybe

adblock2privoxy/src/Statistics.hs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import qualified Data.Map as Map
55
import InputParser
66
import Data.Maybe
77
import Control.Applicative
8+
import Control.Monad
89
import Control.Monad.State
910

1011
type Stat = Map.Map String Int

adblock2privoxy/src/Utils.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ pure'',
2424
(.*.)
2525
) where
2626
import Control.Applicative hiding (many)
27-
import Control.Monad.Writer
2827
import Control.Monad.State
28+
import Data.Monoid
2929

3030
------------------------------------------------------------------------------------------
3131
----------------------------- export -----------------------------------------------------

0 commit comments

Comments
 (0)