summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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
commit08407005bbc120dcc92197936c7b379fa6759493 (patch)
tree95154f2c09e39bbb4ba817ef124016cefdca065a
parentf4c92cf91ef7356cff19ce79d61193d76881c221 (diff)
Bump version number to 0.4.0
-rw-r--r--CHANGELOG.md16
-rw-r--r--Cargo.lock16
-rw-r--r--Cargo.toml2
-rw-r--r--pyproject.toml2
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.
4This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Changelog](http://keepachangelog.com/). 4This 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
diff --git a/Cargo.lock b/Cargo.lock
index b76d9ac..fe787aa 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2,14 +2,6 @@
2# It is not intended for manual editing. 2# It is not intended for manual editing.
3[[package]] 3[[package]]
4name = "adblock" 4name = "adblock"
5version = "0.3.2"
6dependencies = [
7 "adblock 0.3.4",
8 "pyo3",
9]
10
11[[package]]
12name = "adblock"
13version = "0.3.4" 5version = "0.3.4"
14source = "registry+https://github.com/rust-lang/crates.io-index" 6source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "190544b3099ca6e26366898a4991fcb19d031d48ea36158e083543c56c1694b7" 7checksum = "190544b3099ca6e26366898a4991fcb19d031d48ea36158e083543c56c1694b7"
@@ -31,6 +23,14 @@ dependencies = [
31] 23]
32 24
33[[package]] 25[[package]]
26name = "adblock"
27version = "0.4.0"
28dependencies = [
29 "adblock 0.3.4",
30 "pyo3",
31]
32
33[[package]]
34name = "addr" 34name = "addr"
35version = "0.2.0" 35version = "0.2.0"
36source = "registry+https://github.com/rust-lang/crates.io-index" 36source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index e0f1831..372030b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2name = "adblock" 2name = "adblock"
3publish = false 3publish = false
4version = "0.3.2" 4version = "0.4.0"
5authors = ["Árni Dagur <arni@dagur.eu"] 5authors = ["Árni Dagur <arni@dagur.eu"]
6edition = "2018" 6edition = "2018"
7license = "MIT OR Apache-2.0" 7license = "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]
2name = "adblock" 2name = "adblock"
3version = "0.3.2" 3version = "0.4.0"
4description = "Brave's adblocking in Python" 4description = "Brave's adblocking in Python"
5authors = ["Árni Dagur <arni@dagur.eu>"] 5authors = ["Árni Dagur <arni@dagur.eu>"]
6license = "MIT OR Apache-2.0" 6license = "MIT OR Apache-2.0"