diff options
| author | Árni Dagur <arni@dagur.eu> | 2020-12-16 16:53:05 +0000 |
|---|---|---|
| committer | Árni Dagur <arni@dagur.eu> | 2020-12-16 16:53:05 +0000 |
| commit | 08407005bbc120dcc92197936c7b379fa6759493 (patch) | |
| tree | 95154f2c09e39bbb4ba817ef124016cefdca065a | |
| parent | f4c92cf91ef7356cff19ce79d61193d76881c221 (diff) | |
Bump version number to 0.4.0
| -rw-r--r-- | CHANGELOG.md | 16 | ||||
| -rw-r--r-- | Cargo.lock | 16 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | pyproject.toml | 2 |
4 files changed, 25 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 63c9cd0..2bd8cfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
| @@ -4,11 +4,11 @@ All notable changes to this project will be documented in this file. | |||
| 4 | This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Changelog](http://keepachangelog.com/). | 4 | This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Changelog](http://keepachangelog.com/). |
| 5 | 5 | ||
| 6 | 6 | ||
| 7 | |||
| 7 | ## Unreleased | 8 | ## Unreleased |
| 8 | --- | 9 | --- |
| 9 | 10 | ||
| 10 | ### New | 11 | ### New |
| 11 | * Maintain a `CHANGELOG.md` file. | ||
| 12 | 12 | ||
| 13 | ### Changes | 13 | ### Changes |
| 14 | 14 | ||
| @@ -17,6 +17,20 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch | |||
| 17 | ### Breaks | 17 | ### Breaks |
| 18 | 18 | ||
| 19 | 19 | ||
| 20 | ## 0.4.0 - (2020-12-16) | ||
| 21 | --- | ||
| 22 | |||
| 23 | ### New | ||
| 24 | * Maintain a `CHANGELOG.md` file. | ||
| 25 | * Include `generichide` field in `UrlSpecificResources`. | ||
| 26 | |||
| 27 | ### Fixes | ||
| 28 | * Include `Cargo.lock` in source control, fixing incorrect dependency resolution [#15](https://github.com/ArniDagur/python-adblock/issues/15). | ||
| 29 | |||
| 30 | ### Breaks | ||
| 31 | * Remove `explicit_cancel` field from `BlockerResult`, as it has been removed upstream. | ||
| 32 | |||
| 33 | |||
| 20 | ## 0.3.2 - (2020-09-22) | 34 | ## 0.3.2 - (2020-09-22) |
| 21 | --- | 35 | --- |
| 22 | 36 | ||
| @@ -2,14 +2,6 @@ | |||
| 2 | # It is not intended for manual editing. | 2 | # It is not intended for manual editing. |
| 3 | [[package]] | 3 | [[package]] |
| 4 | name = "adblock" | 4 | name = "adblock" |
| 5 | version = "0.3.2" | ||
| 6 | dependencies = [ | ||
| 7 | "adblock 0.3.4", | ||
| 8 | "pyo3", | ||
| 9 | ] | ||
| 10 | |||
| 11 | [[package]] | ||
| 12 | name = "adblock" | ||
| 13 | version = "0.3.4" | 5 | version = "0.3.4" |
| 14 | source = "registry+https://github.com/rust-lang/crates.io-index" | 6 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 15 | checksum = "190544b3099ca6e26366898a4991fcb19d031d48ea36158e083543c56c1694b7" | 7 | checksum = "190544b3099ca6e26366898a4991fcb19d031d48ea36158e083543c56c1694b7" |
| @@ -31,6 +23,14 @@ dependencies = [ | |||
| 31 | ] | 23 | ] |
| 32 | 24 | ||
| 33 | [[package]] | 25 | [[package]] |
| 26 | name = "adblock" | ||
| 27 | version = "0.4.0" | ||
| 28 | dependencies = [ | ||
| 29 | "adblock 0.3.4", | ||
| 30 | "pyo3", | ||
| 31 | ] | ||
| 32 | |||
| 33 | [[package]] | ||
| 34 | name = "addr" | 34 | name = "addr" |
| 35 | version = "0.2.0" | 35 | version = "0.2.0" |
| 36 | source = "registry+https://github.com/rust-lang/crates.io-index" | 36 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1,7 +1,7 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | name = "adblock" | 2 | name = "adblock" |
| 3 | publish = false | 3 | publish = false |
| 4 | version = "0.3.2" | 4 | version = "0.4.0" |
| 5 | authors = ["Árni Dagur <arni@dagur.eu"] | 5 | authors = ["Árni Dagur <arni@dagur.eu"] |
| 6 | edition = "2018" | 6 | edition = "2018" |
| 7 | license = "MIT OR Apache-2.0" | 7 | license = "MIT OR Apache-2.0" |
diff --git a/pyproject.toml b/pyproject.toml index e383fb6..ceb5c2d 100644 --- a/pyproject.toml +++ b/pyproject.toml | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | [tool.poetry] | 1 | [tool.poetry] |
| 2 | name = "adblock" | 2 | name = "adblock" |
| 3 | version = "0.3.2" | 3 | version = "0.4.0" |
| 4 | description = "Brave's adblocking in Python" | 4 | description = "Brave's adblocking in Python" |
| 5 | authors = ["Árni Dagur <arni@dagur.eu>"] | 5 | authors = ["Árni Dagur <arni@dagur.eu>"] |
| 6 | license = "MIT OR Apache-2.0" | 6 | license = "MIT OR Apache-2.0" |
