summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÁrni Dagur <arnidg@protonmail.ch>2020-08-28 15:24:12 +0000
committerÁrni Dagur <arnidg@protonmail.ch>2020-08-28 20:22:21 +0000
commit04678357e0d95ba1569e65b7fc423c17f867a87f (patch)
tree28104302a76f5facfa2a371197555955b242ac85
parent98cf1b8103338be0a249830452bfd24cb95170ee (diff)
Bump version number to 0.3.1
-rw-r--r--Cargo.toml8
-rw-r--r--pyproject.toml2
2 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4af9670..38ae843 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.3.0" 4version = "0.3.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"
@@ -10,11 +10,11 @@ license = "MIT OR Apache-2.0"
10debug = true 10debug = true
11 11
12[dependencies] 12[dependencies]
13adblock = "0.3.0" 13adblock = { version = "0.3.2", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] }
14pyo3 = "0.10" 14pyo3 = "0.11"
15 15
16[lib] 16[lib]
17name="adblock" 17name = "adblock"
18crate-type = ["rlib", "cdylib"] 18crate-type = ["rlib", "cdylib"]
19 19
20[features] 20[features]
diff --git a/pyproject.toml b/pyproject.toml
index 099e239..ab66883 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
1[tool.poetry] 1[tool.poetry]
2name = "adblock" 2name = "adblock"
3version = "0.3.0" 3version = "0.3.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"