Skip to content

Commit 265b725

Browse files
authored
Merge pull request #45 from essandess/fix_show
adblock2privoxy: Update to version 2.3.1
2 parents 9c536c1 + 8f495fe commit 265b725

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

adblock2privoxy-utils/adblock2privoxy-utils.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: adblock2privoxy-utils
2-
version: 2.3.0
2+
version: 2.3.1
33
cabal-version: >= 1.10
44
build-type: Simple
55
tested-with: GHC==8.10.7
@@ -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.3.0
48+
tag: v2.3.1

adblock2privoxy/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2.3.1
2+
* Fix Network.hs compilation
13
2.3.0
24
* hlint mods
35
* Add debug code with new DebugLevel option

adblock2privoxy/adblock2privoxy.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: adblock2privoxy
2-
version: 2.3.0
2+
version: 2.3.1
33
cabal-version: >= 1.10
44
build-type: Simple
55
tested-with:
6-
GHC==9.6.3
6+
GHC==9.12.2
77
author: Alexey Zubritsky <adblock2privoxy@zubr.me>, Steven Thomas Smith <steve.t.smith@gmail.com>
88
data-files:
99
templates/ab2p.system.action,
@@ -104,4 +104,4 @@ source-repository this
104104
type: git
105105
location: https://github.com/essandess/adblock2privoxy.git
106106
subdir: adblock2privoxy
107-
tag: v2.3.0
107+
tag: v2.3.1

adblock2privoxy/src/Network.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ where
55

66
import Network.HTTP.Conduit
77
import Data.Text.Lazy.Encoding
8-
import Data.Text.Lazy
8+
import Data.Text.Lazy (unpack)
99
import Control.Exception
1010

1111
-- | A simpleHttp alternative that specifies bigger timeout and retries connection attempts

adblock2privoxy/src/Paths_adblock2privoxy.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
3838
catchIO = Exception.catch
3939

4040
version :: Version
41-
version = Version [2,3,0] []
41+
version = Version [2,3,1] []
4242
bindir, libdir, dynlibdir, datadir, libexecdir, sysconfdir :: FilePath
4343

4444
bindir = "/opt/local/bin"

0 commit comments

Comments
 (0)