summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock6
-rw-r--r--Cargo.toml2
3 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 67fc4e1..e13cd84 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,11 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch
6## Unreleased 6## Unreleased
7--- 7---
8 8
9## 0.5.1 - (2021-06-26)
10---
11### Fixes
12* Fix test suite for Python `3.10`.
13
9## 0.5.0 - (2021-06-26) 14## 0.5.0 - (2021-06-26)
10--- 15---
11### Breaks 16### Breaks
diff --git a/Cargo.lock b/Cargo.lock
index 6bb38b2..df7e282 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -26,7 +26,7 @@ dependencies = [
26 26
27[[package]] 27[[package]]
28name = "adblock" 28name = "adblock"
29version = "0.5.0" 29version = "0.5.1"
30dependencies = [ 30dependencies = [
31 "adblock 0.3.13", 31 "adblock 0.3.13",
32 "pyo3", 32 "pyo3",
@@ -224,9 +224,9 @@ dependencies = [
224 224
225[[package]] 225[[package]]
226name = "once_cell" 226name = "once_cell"
227version = "1.7.2" 227version = "1.8.0"
228source = "registry+https://github.com/rust-lang/crates.io-index" 228source = "registry+https://github.com/rust-lang/crates.io-index"
229checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3" 229checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
230 230
231[[package]] 231[[package]]
232name = "parking_lot" 232name = "parking_lot"
diff --git a/Cargo.toml b/Cargo.toml
index 04d8230..6ac767b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2publish = false 2publish = false
3name = "adblock" 3name = "adblock"
4version = "0.5.0" 4version = "0.5.1"
5edition = "2018" 5edition = "2018"
6authors = ["Árni Dagur <arni@dagur.eu>"] 6authors = ["Árni Dagur <arni@dagur.eu>"]
7license = "MIT OR Apache-2.0" 7license = "MIT OR Apache-2.0"