summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--pyproject.toml2
4 files changed, 7 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ca861ed..6e603b8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,19 +3,20 @@
3All notable changes to this project will be documented in this file. 3All 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## Unreleased
7---
6 8
7 9
8## Unreleased 10## 0.4.1 - (2021-01-27)
9--- 11---
10 12
11### New 13### New
14* Windows 32-bit prebuilt wheels.
12 15
13### Changes 16### Changes
14* Updated PyO3 to version `0.13`. 17* Updated PyO3 to version `0.13`.
15* Changed `__repr__` methods of classes to be more idiomatic. 18* Changed `__repr__` methods of classes to be more idiomatic.
16 19
17### Fixes
18
19### Breaks 20### Breaks
20* Dropped Python `3.5` support. 21* Dropped Python `3.5` support.
21 22
diff --git a/Cargo.lock b/Cargo.lock
index f94ffe6..3fdec81 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -24,7 +24,7 @@ dependencies = [
24 24
25[[package]] 25[[package]]
26name = "adblock" 26name = "adblock"
27version = "0.4.0" 27version = "0.4.1"
28dependencies = [ 28dependencies = [
29 "adblock 0.3.4", 29 "adblock 0.3.4",
30 "pyo3", 30 "pyo3",
diff --git a/Cargo.toml b/Cargo.toml
index 482c01f..a1947ae 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.4.0" 4version = "0.4.1"
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 ceb5c2d..432e476 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
1[tool.poetry] 1[tool.poetry]
2name = "adblock" 2name = "adblock"
3version = "0.4.0" 3version = "0.4.1"
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"