python-adblock

Updated Brave adblock library for Python
Log | Files | Refs | README

commit 04678357e0d95ba1569e65b7fc423c17f867a87f
parent 98cf1b8103338be0a249830452bfd24cb95170ee
Author: Árni Dagur <arnidg@protonmail.ch>
Date:   Fri, 28 Aug 2020 15:24:12 +0000

Bump version number to 0.3.1

Diffstat:
MCargo.toml | 8++++----
Mpyproject.toml | 2+-
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "adblock" publish = false -version = "0.3.0" +version = "0.3.1" authors = ["Árni Dagur <arni@dagur.eu"] edition = "2018" license = "MIT OR Apache-2.0" @@ -10,11 +10,11 @@ license = "MIT OR Apache-2.0" debug = true [dependencies] -adblock = "0.3.0" -pyo3 = "0.10" +adblock = { version = "0.3.2", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] } +pyo3 = "0.11" [lib] -name="adblock" +name = "adblock" crate-type = ["rlib", "cdylib"] [features] diff --git a/pyproject.toml b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "adblock" -version = "0.3.0" +version = "0.3.1" description = "Brave's adblocking in Python" authors = ["Árni Dagur <arni@dagur.eu>"] license = "MIT OR Apache-2.0"