summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.lock16
-rw-r--r--Cargo.toml4
3 files changed, 13 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7e66291..9061634 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch
5 5
6## Unreleased 6## Unreleased
7--- 7---
8
9## 0.6.0 - (2022-07-17)
10---
8### Added 11### Added
9* Added `aliases` optional argument to `Engine.add_resource` 12* Added `aliases` optional argument to `Engine.add_resource`
10 13
@@ -16,7 +19,6 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch
16* Minimum Rust version is now `1.53`. 19* Minimum Rust version is now `1.53`.
17* Minimum Python version is now `3.7`. 20* Minimum Python version is now `3.7`.
18 21
19
20## 0.5.2 - (2022-03-01) 22## 0.5.2 - (2022-03-01)
21--- 23---
22* Include complete redirect rule feature ([#59](https://github.com/ArniDagur/python-adblock/pull/59)). Thanks @x0day! 24* Include complete redirect rule feature ([#59](https://github.com/ArniDagur/python-adblock/pull/59)). Thanks @x0day!
diff --git a/Cargo.lock b/Cargo.lock
index cc2596a..999805e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4,14 +4,6 @@ version = 3
4 4
5[[package]] 5[[package]]
6name = "adblock" 6name = "adblock"
7version = "0.5.2"
8dependencies = [
9 "adblock 0.5.6",
10 "pyo3",
11]
12
13[[package]]
14name = "adblock"
15version = "0.5.6" 7version = "0.5.6"
16source = "registry+https://github.com/rust-lang/crates.io-index" 8source = "registry+https://github.com/rust-lang/crates.io-index"
17checksum = "27785ef5b89bc88fd2def3e1ecfefdf5ec1583795b916667afd15b13058f8315" 9checksum = "27785ef5b89bc88fd2def3e1ecfefdf5ec1583795b916667afd15b13058f8315"
@@ -34,6 +26,14 @@ dependencies = [
34] 26]
35 27
36[[package]] 28[[package]]
29name = "adblock"
30version = "0.6.0"
31dependencies = [
32 "adblock 0.5.6",
33 "pyo3",
34]
35
36[[package]]
37name = "addr" 37name = "addr"
38version = "0.14.0" 38version = "0.14.0"
39source = "registry+https://github.com/rust-lang/crates.io-index" 39source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index bf51c19..f1ed52e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2publish = false 2publish = false
3name = "adblock" 3name = "adblock"
4version = "0.5.2" 4version = "0.6.0"
5edition = "2018" 5edition = "2018"
6authors = ["Árni Dagur <arni@dagur.eu>"] 6authors = ["Árni Dagur <arni@dagur.eu>"]
7license = "MIT OR Apache-2.0" 7license = "MIT OR Apache-2.0"
@@ -16,7 +16,7 @@ classifier = [
16 "License :: OSI Approved :: MIT License", 16 "License :: OSI Approved :: MIT License",
17 "License :: OSI Approved :: Apache Software License", 17 "License :: OSI Approved :: Apache Software License",
18] 18]
19requires-python = ">=3.6" 19requires-python = ">=3.7"
20 20
21[profile.release] 21[profile.release]
22debug = true 22debug = true