summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--cli/Cargo.toml2
-rw-r--r--ext/http/Cargo.toml2
-rw-r--r--runtime/Cargo.toml4
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0f87da0fd..d590ccdad 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -795,7 +795,7 @@ dependencies = [
[[package]]
name = "deno_http"
-version = "0.7.0"
+version = "0.8.0"
dependencies = [
"base64 0.13.0",
"bytes",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 8ef84d71a..9f18a5b6d 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -26,7 +26,7 @@ deno_core = { version = "0.98.0", path = "../core" }
deno_crypto = { version = "0.30.0", path = "../ext/crypto" }
deno_fetch = { version = "0.39.0", path = "../ext/fetch" }
deno_ffi = { version = "0.3.0", path = "../ext/ffi" }
-deno_http = { version = "0.7.0", path = "../ext/http" }
+deno_http = { version = "0.8.0", path = "../ext/http" }
deno_net = { version = "0.7.0", path = "../ext/net" }
deno_timers = { version = "0.14.0", path = "../ext/timers" }
deno_url = { version = "0.16.0", path = "../ext/url" }
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index 4c62085b1..1e79e9983 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_http"
-version = "0.7.0"
+version = "0.8.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 8d6cee84c..98983b5de 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -28,7 +28,7 @@ deno_core = { version = "0.98.0", path = "../core" }
deno_crypto = { version = "0.30.0", path = "../ext/crypto" }
deno_fetch = { version = "0.39.0", path = "../ext/fetch" }
deno_ffi = { version = "0.3.0", path = "../ext/ffi" }
-deno_http = { version = "0.7.0", path = "../ext/http" }
+deno_http = { version = "0.8.0", path = "../ext/http" }
deno_net = { version = "0.7.0", path = "../ext/net" }
deno_timers = { version = "0.14.0", path = "../ext/timers" }
deno_tls = { version = "0.3.0", path = "../ext/tls" }
@@ -50,7 +50,7 @@ deno_core = { version = "0.98.0", path = "../core" }
deno_crypto = { version = "0.30.0", path = "../ext/crypto" }
deno_fetch = { version = "0.39.0", path = "../ext/fetch" }
deno_ffi = { version = "0.3.0", path = "../ext/ffi" }
-deno_http = { version = "0.7.0", path = "../ext/http" }
+deno_http = { version = "0.8.0", path = "../ext/http" }
deno_net = { version = "0.7.0", path = "../ext/net" }
deno_timers = { version = "0.14.0", path = "../ext/timers" }
deno_tls = { version = "0.3.0", path = "../ext/tls" }