diff options
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | Releases.md | 22 | ||||
-rw-r--r-- | cli/Cargo.toml | 8 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | op_crates/web/Cargo.toml | 4 | ||||
-rw-r--r-- | std/version.ts | 2 |
6 files changed, 33 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock index e8494abda..ded84d18c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.2.2" +version = "1.2.3" dependencies = [ "atty", "base64 0.12.3", @@ -431,7 +431,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.51.0" +version = "0.52.0" dependencies = [ "derive_deref", "downcast-rs", @@ -464,7 +464,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.1.0" +version = "0.2.0" dependencies = [ "deno_core", "futures", diff --git a/Releases.md b/Releases.md index 2a3b2a4c3..9a23e2413 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,28 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### 1.2.3 / 2020.08.08 + +Changes in the CLI: + +- fix: Never type check in deno info (#6978) +- fix: add missing globals to unstable diagnostics (#6960) +- fix: add support for non-UTF8 source files (#6789) +- fix: hash file names in gen cache (#6911) +- refactor: Encode op errors as strings instead of numbers (#6977) +- refactor: Op crate for Web APIs (#6906) +- refactor: remove repeated code in main.rs (#6954) +- upgrade to rusty_v8 0.8.1 / V8 8.6.334 (#6980) +- upgrade: deno_lint v0.1.21 (#6985) +- upgrade: swc_ecmascript (#6943) +- feat(unstable): custom http client for fetch (#6918) + +Changes in std version 0.64.0: + +- fix(std/toml): parser error with inline comments (#6942) +- fix(std/encoding/toml): Add boolean support to stringify (#6941) +- refactor: Rewrite globToRegExp() (#6963) + ### 1.2.2 / 2020.07.31 Changes in the CLI: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5c7601222..0d249bee9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.2.2" +version = "1.2.3" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -15,15 +15,15 @@ name = "deno" path = "main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.51.0" } -deno_web = { path = "../op_crates/web", version = "0.1.0" } +deno_core = { path = "../core", version = "0.52.0" } +deno_web = { path = "../op_crates/web", version = "0.2.0" } [target.'cfg(windows)'.build-dependencies] winres = "0.1" winapi = "0.3.8" [dependencies] -deno_core = { path = "../core", version = "0.51.0" } +deno_core = { path = "../core", version = "0.52.0" } deno_lint = { version = "0.1.21", features = ["json"] } atty = "0.2.14" diff --git a/core/Cargo.toml b/core/Cargo.toml index cd30f3e9a..64fd6288b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.51.0" +version = "0.52.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index ae5677561..c578efa88 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.1.0" +version = "0.2.0" edition = "2018" description = "Collection of Web APIs" authors = ["the Deno authors"] @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.51.0", path = "../../core" } +deno_core = { version = "0.52.0", path = "../../core" } [dev-dependencies] futures = "0.3.5" diff --git a/std/version.ts b/std/version.ts index 7723816ab..b60cd0828 100644 --- a/std/version.ts +++ b/std/version.ts @@ -4,4 +4,4 @@ * the cli's API is stable. In the future when std becomes stable, likely we * will match versions with cli as we have in the past. */ -export const VERSION = "0.63.0"; +export const VERSION = "0.64.0"; |