summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Docs.md17
1 files changed, 16 insertions, 1 deletions
diff --git a/Docs.md b/Docs.md
index 9a3f60338..9c0a0a8fd 100644
--- a/Docs.md
+++ b/Docs.md
@@ -337,7 +337,22 @@ https://github.com/denoland/deno/blob/master/src/msg.fbs
See
[CONTRIBUTING.md](https://github.com/denoland/deno/blob/master/.github/CONTRIBUTING.md).
-## Change Log
+## Changelog
+
+### 2018.11.27 / v0.2.0 / Mildly usable
+
+[An intro talk was recorded.](https://www.youtube.com/watch?v=FlTG0UXRAkE)
+
+Stability and usability improvements. `fetch()` is 90% functional now. Basic
+REPL support was added. Shebang support was added. Command-line argument parsing
+was improved. A forwarding service `https://deno.land/x` was set up for Deno
+code. Example code has been posted to
+[deno.land/x/examples](https://github.com/denoland/deno_examples) and
+[deno.land/x/net](https://github.com/denoland/net).
+
+The resources table was added to abstract various types of I/O streams and other
+allocated state. A resource is an integer identifier which maps to some Rust
+object. It can be used with various ops, particularly read and write.
### 2018.10.18 / v0.1.8 / Connecting to Tokio / Fleshing out APIs