summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-02-18 19:06:59 -0500
committerRyan Dahl <ry@tinyclouds.org>2019-02-18 23:22:41 -0500
commita5720d9e28f7ee5868049504816405392c2821d7 (patch)
tree33d202cd14e07dcd9c5339ff755c1694f461de1c
parentc0b87567978d32e3fd2f2d3c3daaafb7838a375e (diff)
v0.3.0
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--Releases.md23
3 files changed, 25 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 19a79b10e..e4399dcbc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -197,7 +197,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.2.11"
+version = "0.3.0"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index f38f30832..ce796ea3e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@
# crates.
[package]
name = "deno"
-version = "0.2.11"
+version = "0.3.0"
edition = "2018"
[dependencies]
diff --git a/Releases.md b/Releases.md
index 144112408..0bce4d69b 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,29 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.3.0 / 2019.02.18
+
+The major API change in this release is that instead of importing a `"deno"`
+module, there is now a global variable called `Deno`. This allows code that does
+deno-specific stuff to still operate in browsers. We will remain backward
+compatible with the old way of importing core functionality, but it will be
+removed in the near future, so please update your code. See #1748 for more
+details.
+
+- Add Deno global namespace object (#1748)
+- Add window.location (#1761)
+- Add back typescript version number and add Deno.version object (#1788)
+- Add `seek` and implement `Seeker` on `File` (#1797)
+- Add Deno.execPath (#1743)
+- Fix behavior for extensionless files with .mime file (#1779)
+- Add env option in Deno.run (#1773)
+- Turn on `v8_postmortem_support` (#1758)
+- Upgrade V8 to 7.4.158 (#1767)
+- Use proper directory for cache files (#1763)
+- REPL multiline support with recoverable errors (#1731)
+- Respect `NO_COLOR` in TypeScript output (#1736)
+- Support scoped variables, unblock REPL async op, and REPL error colors (#1721)
+
### v0.2.11 / 2019.02.08
- Add deps to --info output (#1720)