diff --git a/CHANGELOG.md b/CHANGELOG.md index 79e0ce3..692ee73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## HEAD +## 0.5.0 + - Split `scalpel` into two packages: `scalpel` and `scalpel-core`. The latter does not provide networking support and does not depend on curl. diff --git a/scalpel-core/scalpel-core.cabal b/scalpel-core/scalpel-core.cabal index fa22cbb..e9feb1d 100644 --- a/scalpel-core/scalpel-core.cabal +++ b/scalpel-core/scalpel-core.cabal @@ -1,5 +1,5 @@ name: scalpel-core -version: 0.4.1 +version: 0.5.0 synopsis: A high level web scraping library for Haskell. description: Scalpel core provides a subset of the scalpel web scraping library that is @@ -24,7 +24,7 @@ source-repository head source-repository this type: git location: https://github.com/fimad/scalpel.git - tag: v0.4.1 + tag: v0.5.0 library other-extensions: diff --git a/scalpel/scalpel.cabal b/scalpel/scalpel.cabal index 7bee59d..f8a0b7d 100644 --- a/scalpel/scalpel.cabal +++ b/scalpel/scalpel.cabal @@ -1,5 +1,5 @@ name: scalpel -version: 0.4.1 +version: 0.5.0 synopsis: A high level web scraping library for Haskell. description: Scalpel is a web scraping library inspired by libraries like Parsec and @@ -24,7 +24,7 @@ source-repository head source-repository this type: git location: https://github.com/fimad/scalpel.git - tag: v0.4.1 + tag: v0.5.0 library other-extensions: @@ -38,7 +38,7 @@ library default-language: Haskell2010 build-depends: base >= 4.6 && < 5 - , scalpel-core == 0.4.1 + , scalpel-core == 0.5.0 , bytestring , curl >= 1.3.4 , data-default