diff options
| author | Árni Dagur <arni@dagur.eu> | 2022-07-18 00:48:58 +0200 |
|---|---|---|
| committer | Árni Dagur <arni@dagur.eu> | 2022-07-18 00:57:45 +0200 |
| commit | e8c923f69388dcff2c7805bec2269db2cc61d0c4 (patch) | |
| tree | 395e733fc5bd0d05657773c81be9eef78ea71ef0 | |
| parent | 7cc01b838d6332fea3e392c80236138845d61502 (diff) | |
Bump version to 0.6.0
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | Cargo.lock | 16 | ||||
| -rw-r--r-- | Cargo.toml | 4 |
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! |
| @@ -4,14 +4,6 @@ version = 3 | |||
| 4 | 4 | ||
| 5 | [[package]] | 5 | [[package]] |
| 6 | name = "adblock" | 6 | name = "adblock" |
| 7 | version = "0.5.2" | ||
| 8 | dependencies = [ | ||
| 9 | "adblock 0.5.6", | ||
| 10 | "pyo3", | ||
| 11 | ] | ||
| 12 | |||
| 13 | [[package]] | ||
| 14 | name = "adblock" | ||
| 15 | version = "0.5.6" | 7 | version = "0.5.6" |
| 16 | source = "registry+https://github.com/rust-lang/crates.io-index" | 8 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 17 | checksum = "27785ef5b89bc88fd2def3e1ecfefdf5ec1583795b916667afd15b13058f8315" | 9 | checksum = "27785ef5b89bc88fd2def3e1ecfefdf5ec1583795b916667afd15b13058f8315" |
| @@ -34,6 +26,14 @@ dependencies = [ | |||
| 34 | ] | 26 | ] |
| 35 | 27 | ||
| 36 | [[package]] | 28 | [[package]] |
| 29 | name = "adblock" | ||
| 30 | version = "0.6.0" | ||
| 31 | dependencies = [ | ||
| 32 | "adblock 0.5.6", | ||
| 33 | "pyo3", | ||
| 34 | ] | ||
| 35 | |||
| 36 | [[package]] | ||
| 37 | name = "addr" | 37 | name = "addr" |
| 38 | version = "0.14.0" | 38 | version = "0.14.0" |
| 39 | source = "registry+https://github.com/rust-lang/crates.io-index" | 39 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1,7 +1,7 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | publish = false | 2 | publish = false |
| 3 | name = "adblock" | 3 | name = "adblock" |
| 4 | version = "0.5.2" | 4 | version = "0.6.0" |
| 5 | edition = "2018" | 5 | edition = "2018" |
| 6 | authors = ["Árni Dagur <arni@dagur.eu>"] | 6 | authors = ["Árni Dagur <arni@dagur.eu>"] |
| 7 | license = "MIT OR Apache-2.0" | 7 | license = "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 | ] |
| 19 | requires-python = ">=3.6" | 19 | requires-python = ">=3.7" |
| 20 | 20 | ||
| 21 | [profile.release] | 21 | [profile.release] |
| 22 | debug = true | 22 | debug = true |
