summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LICENSE2
-rw-r--r--js/assets.ts2
-rw-r--r--js/blob.ts2
-rw-r--r--js/blob_test.ts2
-rw-r--r--js/chmod.ts2
-rw-r--r--js/chmod_test.ts2
-rw-r--r--js/compiler.ts2
-rw-r--r--js/compiler_test.ts2
-rw-r--r--js/console.ts2
-rw-r--r--js/console_test.ts2
-rw-r--r--js/copy_file.ts2
-rw-r--r--js/copy_file_test.ts2
-rw-r--r--js/deno.ts2
-rw-r--r--src/deno_dir.rs2
-rw-r--r--src/eager_unix.rs2
-rw-r--r--src/errors.rs2
-rw-r--r--src/flags.rs2
-rw-r--r--src/fs.rs2
-rw-r--r--src/http_body.rs2
-rw-r--r--src/http_util.rs2
-rw-r--r--src/isolate.rs2
-rw-r--r--src/js_errors.rs2
-rw-r--r--src/libdeno.rs2
-rw-r--r--src/main.rs2
-rw-r--r--src/msg_util.rs2
-rw-r--r--src/ops.rs2
-rw-r--r--src/repl.rs2
-rw-r--r--src/resources.rs2
-rw-r--r--src/snapshot.rs2
-rw-r--r--src/tokio_util.rs2
-rw-r--r--src/version.rs2
-rwxr-xr-xtools/benchmark.py2
32 files changed, 32 insertions, 32 deletions
diff --git a/LICENSE b/LICENSE
index bd98abb82..5a671244d 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2018 Ryan Dahl
+Copyright (c) 2018-2019 the Deno authors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/js/assets.ts b/js/assets.ts
index 2344cfc04..773612b26 100644
--- a/js/assets.ts
+++ b/js/assets.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// tslint:disable-next-line:no-reference
/// <reference path="./plugins.d.ts" />
diff --git a/js/blob.ts b/js/blob.ts
index 4717a28fb..96aae496e 100644
--- a/js/blob.ts
+++ b/js/blob.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import * as domTypes from "./dom_types";
import { containsOnlyASCII } from "./util";
import { TextEncoder } from "./text_encoding";
diff --git a/js/blob_test.ts b/js/blob_test.ts
index 293d475dd..142554167 100644
--- a/js/blob_test.ts
+++ b/js/blob_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { test, assert, assertEqual } from "./test_util.ts";
test(async function blobString() {
diff --git a/js/chmod.ts b/js/chmod.ts
index 385e6345d..74b211f84 100644
--- a/js/chmod.ts
+++ b/js/chmod.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import * as msg from "gen/msg_generated";
import * as flatbuffers from "./flatbuffers";
import * as dispatch from "./dispatch";
diff --git a/js/chmod_test.ts b/js/chmod_test.ts
index f731a026e..75f4524db 100644
--- a/js/chmod_test.ts
+++ b/js/chmod_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { testPerm, assertEqual } from "./test_util.ts";
import * as deno from "deno";
diff --git a/js/compiler.ts b/js/compiler.ts
index 5031fb0bf..ceb11f861 100644
--- a/js/compiler.ts
+++ b/js/compiler.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import * as ts from "typescript";
import { MediaType } from "gen/msg_generated";
diff --git a/js/compiler_test.ts b/js/compiler_test.ts
index 8afe64d7f..21aab180a 100644
--- a/js/compiler_test.ts
+++ b/js/compiler_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { test, assert, assertEqual } from "./test_util.ts";
import * as deno from "deno";
import * as ts from "typescript";
diff --git a/js/console.ts b/js/console.ts
index 396def545..456d3485e 100644
--- a/js/console.ts
+++ b/js/console.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { isTypedArray } from "./util";
// tslint:disable-next-line:no-any
diff --git a/js/console_test.ts b/js/console_test.ts
index e3349054b..3f045db86 100644
--- a/js/console_test.ts
+++ b/js/console_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { Console, libdeno, stringifyArgs, inspect } from "deno";
import { test, assert, assertEqual } from "./test_util.ts";
diff --git a/js/copy_file.ts b/js/copy_file.ts
index 255d977bf..a4e8d210c 100644
--- a/js/copy_file.ts
+++ b/js/copy_file.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import * as msg from "gen/msg_generated";
import * as flatbuffers from "./flatbuffers";
import * as dispatch from "./dispatch";
diff --git a/js/copy_file_test.ts b/js/copy_file_test.ts
index 807fbb9d0..02f13c6f3 100644
--- a/js/copy_file_test.ts
+++ b/js/copy_file_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { testPerm, assert, assertEqual } from "./test_util.ts";
import * as deno from "deno";
diff --git a/js/deno.ts b/js/deno.ts
index 86a6990d6..2e82613e8 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// Public deno module.
/// <amd-module name="deno"/>
diff --git a/src/deno_dir.rs b/src/deno_dir.rs
index 1af5daa3f..5ae1c66d9 100644
--- a/src/deno_dir.rs
+++ b/src/deno_dir.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use dirs;
use errors;
use errors::DenoError;
diff --git a/src/eager_unix.rs b/src/eager_unix.rs
index 85f4106c4..1c0f5bd33 100644
--- a/src/eager_unix.rs
+++ b/src/eager_unix.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use resources::{EagerAccept, EagerRead, EagerWrite, Resource};
use tokio_util;
diff --git a/src/errors.rs b/src/errors.rs
index ec96c96a6..f16ba6299 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use hyper;
pub use msg::ErrorKind;
use std;
diff --git a/src/flags.rs b/src/flags.rs
index 0740e6c46..befb15ab8 100644
--- a/src/flags.rs
+++ b/src/flags.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use getopts;
use getopts::Options;
use libc::c_int;
diff --git a/src/fs.rs b/src/fs.rs
index 228b4431e..1b860b057 100644
--- a/src/fs.rs
+++ b/src/fs.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use std;
use std::fs::{create_dir, DirBuilder, File, OpenOptions};
use std::io::ErrorKind;
diff --git a/src/http_body.rs b/src/http_body.rs
index e75e3ec2d..235463ff1 100644
--- a/src/http_body.rs
+++ b/src/http_body.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use futures::Async;
use futures::Poll;
diff --git a/src/http_util.rs b/src/http_util.rs
index 8c289911e..3d8ae6791 100644
--- a/src/http_util.rs
+++ b/src/http_util.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use errors;
use errors::{DenoError, DenoResult};
use tokio_util;
diff --git a/src/isolate.rs b/src/isolate.rs
index 4d5b92d58..b70e47912 100644
--- a/src/isolate.rs
+++ b/src/isolate.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// Do not use FlatBuffers in this module.
// TODO Currently this module uses Tokio, but it would be nice if they were
diff --git a/src/js_errors.rs b/src/js_errors.rs
index 7b4e14321..167877335 100644
--- a/src/js_errors.rs
+++ b/src/js_errors.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// Note that source_map_mappings requires 0-indexed line and column numbers but
// V8 Exceptions are 1-indexed.
diff --git a/src/libdeno.rs b/src/libdeno.rs
index cce6c4e60..bdc2c54c1 100644
--- a/src/libdeno.rs
+++ b/src/libdeno.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use libc::c_char;
use libc::c_int;
use libc::c_void;
diff --git a/src/main.rs b/src/main.rs
index 6c65a3858..364a9cf7e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
extern crate dirs;
extern crate flatbuffers;
extern crate getopts;
diff --git a/src/msg_util.rs b/src/msg_util.rs
index ae5e2dc51..4517c068f 100644
--- a/src/msg_util.rs
+++ b/src/msg_util.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// Helpers for serialization.
use errors;
use errors::DenoResult;
diff --git a/src/ops.rs b/src/ops.rs
index 1ec46e445..5b2598728 100644
--- a/src/ops.rs
+++ b/src/ops.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use errors;
use errors::{DenoError, DenoResult, ErrorKind};
use fs as deno_fs;
diff --git a/src/repl.rs b/src/repl.rs
index 6dcaf9cf7..835e6dbff 100644
--- a/src/repl.rs
+++ b/src/repl.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
extern crate rustyline;
use rustyline::error::ReadlineError::Interrupted;
diff --git a/src/resources.rs b/src/resources.rs
index dd1ad0056..f1497f214 100644
--- a/src/resources.rs
+++ b/src/resources.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// Think of Resources as File Descriptors. They are integers that are allocated
// by the privileged side of Deno to refer to various resources. The simplest
diff --git a/src/snapshot.rs b/src/snapshot.rs
index 264395093..e9457850e 100644
--- a/src/snapshot.rs
+++ b/src/snapshot.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use libdeno::deno_buf;
pub fn deno_snapshot() -> deno_buf {
diff --git a/src/tokio_util.rs b/src/tokio_util.rs
index 6d295453f..2780822f1 100644
--- a/src/tokio_util.rs
+++ b/src/tokio_util.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use resources::Resource;
use futures;
diff --git a/src/version.rs b/src/version.rs
index 0d4c7b953..0f328874f 100644
--- a/src/version.rs
+++ b/src/version.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use libdeno;
use std::ffi::CStr;
diff --git a/tools/benchmark.py b/tools/benchmark.py
index 9217eceec..000d12993 100755
--- a/tools/benchmark.py
+++ b/tools/benchmark.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
# Performs benchmark and append data to //website/data.json.
# If //website/data.json doesn't exist, this script tries to import it from
# gh-pages branch.