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