summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-03-06 17:49:45 -0500
committerRyan Dahl <ry@tinyclouds.org>2019-03-06 21:22:48 -0500
commit535037b519711d238dc0bfa2c4d2ffb4b17dec53 (patch)
treeedeff3155802447d399b9392e82b2662c57b5cae
parentc42a9d737081fb8ee768c7178dae0e1f19c0f343 (diff)
v0.3.2
-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 c341d3480..2a1a11135 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -199,7 +199,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.3.1"
+version = "0.3.2"
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 47862713d..2d1e6041f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,7 +13,7 @@ members = [
[package]
name = "deno"
-version = "0.3.1"
+version = "0.3.2"
edition = "2018"
[dependencies]
diff --git a/Releases.md b/Releases.md
index b32320805..c1f046c7e 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.2 / 2019.03.06
+
+In deno itself:
+
+- Reorganize version and platform into Deno.build and Deno.version (#1879)
+- Allow inspection and revocation of permissions (#1875)
+- Fix unicode output on Windows (#1876)
+- Add Deno.build.gnArgs (#1845)
+- Fix security bug #1858 (#1864, #1874)
+- Replace deno.land/x/std links with deno.land/std/ (#1890)
+
+In deno_std:
+
+- Move asserts out of testing/mod.ts into testing/assert.ts Rename assertEqual
+ to assertEquals (#240, #242)
+- Update mime-db to 1.38.0 (#238)
+- Use pretty assertEqual in testing (#234)
+- Add eslint to CI (#235)
+- Refactor WebSockets (#173)
+- Allow for parallel testing (#224)
+- testing: use color module for displaying colors (#223)
+- Glob integration for the FS walker (#219)
+
### v0.3.1 / 2019.02.27
- Add import.meta.main (#1835)