diff --git a/Cargo.lock b/Cargo.lock index 0f87da0fdf..d590ccdad5 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 8ef84d71a6..9f18a5b6d7 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 4c62085b10..1e79e99835 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 8d6cee84c8..98983b5ded 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" }