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