python-adblock

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

commit e8c923f69388dcff2c7805bec2269db2cc61d0c4
parent 7cc01b838d6332fea3e392c80236138845d61502
Author: Árni Dagur <arni@dagur.eu>
Date:   Mon, 18 Jul 2022 00:48:58 +0200

Bump version to 0.6.0

Diffstat:
MCHANGELOG.md | 4+++-
MCargo.lock | 16++++++++--------
MCargo.toml | 4++--
3 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch ## Unreleased --- + +## 0.6.0 - (2022-07-17) +--- ### Added * Added `aliases` optional argument to `Engine.add_resource` @@ -16,7 +19,6 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch * Minimum Rust version is now `1.53`. * Minimum Python version is now `3.7`. - ## 0.5.2 - (2022-03-01) --- * Include complete redirect rule feature ([#59](https://github.com/ArniDagur/python-adblock/pull/59)). Thanks @x0day! diff --git a/Cargo.lock b/Cargo.lock @@ -4,14 +4,6 @@ version = 3 [[package]] name = "adblock" -version = "0.5.2" -dependencies = [ - "adblock 0.5.6", - "pyo3", -] - -[[package]] -name = "adblock" version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "27785ef5b89bc88fd2def3e1ecfefdf5ec1583795b916667afd15b13058f8315" @@ -34,6 +26,14 @@ dependencies = [ ] [[package]] +name = "adblock" +version = "0.6.0" +dependencies = [ + "adblock 0.5.6", + "pyo3", +] + +[[package]] name = "addr" version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/Cargo.toml b/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "adblock" -version = "0.5.2" +version = "0.6.0" edition = "2018" authors = ["Árni Dagur <arni@dagur.eu>"] license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ classifier = [ "License :: OSI Approved :: MIT License", "License :: OSI Approved :: Apache Software License", ] -requires-python = ">=3.6" +requires-python = ">=3.7" [profile.release] debug = true