blob: 90616340fc162a5724b077013d5de3ba615332ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# CHANGELOG
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
---
## 0.6.0 - (2022-07-17)
---
### Added
* Added `aliases` optional argument to `Engine.add_resource`
### Changes
* Update PyO3 dependency to `0.16`.
* Update upstream dependency to `0.5.6`.
### Breaks
* Minimum Rust version is now `1.53`.
* Minimum Python version is now `3.7`.
## 0.5.2 - (2022-03-01)
---
* Include complete redirect rule feature ([#59](https://github.com/ArniDagur/python-adblock/pull/59)). Thanks @x0day!
## 0.5.1 - (2021-06-26)
---
### Fixes
* Fix test suite for Python `3.10`.
## 0.5.0 - (2021-06-26)
---
### Breaks
* Library now throws the custom `adblock.AdblockException` exception, instead of `ValueError`.
## 0.4.4 - (2021-04-13)
---
### Changes
* PyO3 is now configured to use [`abi3`](https://pyo3.rs/v0.13.2/building_and_distribution.html#py_limited_apiabi3).
## 0.4.3 - (2021-03-20)
---
### Changes
* Update `adblock` dependency to `0.3.10`
## 0.4.2 - (2021-02-01)
---
### Fixes
* Remove relative import which caused problems in [#17](https://github.com/ArniDagur/python-adblock/issues/17).
## 0.4.1 - (2021-01-27)
---
### New
* Windows 32-bit prebuilt wheels.
### Changes
* Updated PyO3 to version `0.13`.
* Changed `__repr__` methods of classes to be more idiomatic.
### Breaks
* Dropped Python `3.5` support.
## 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)
---
### New
* Build Python 3.9 wheels.
### Changes
* Updated PyO3 to version `0.12`.
### Fixes
* Don't use star imports in `__init__.py` to give linters and type checkers more information.
|