From 2c477dd7cb37d37f4c8bcf7fd159c08c4cfa1ac1 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 1 Jan 2019 19:58:40 -0500 Subject: [PATCH] Happy new year! --- LICENSE | 2 +- js/assets.ts | 2 +- js/blob.ts | 2 +- js/blob_test.ts | 2 +- js/chmod.ts | 2 +- js/chmod_test.ts | 2 +- js/compiler.ts | 2 +- js/compiler_test.ts | 2 +- js/console.ts | 2 +- js/console_test.ts | 2 +- js/copy_file.ts | 2 +- js/copy_file_test.ts | 2 +- js/deno.ts | 2 +- src/deno_dir.rs | 2 +- src/eager_unix.rs | 2 +- src/errors.rs | 2 +- src/flags.rs | 2 +- src/fs.rs | 2 +- src/http_body.rs | 2 +- src/http_util.rs | 2 +- src/isolate.rs | 2 +- src/js_errors.rs | 2 +- src/libdeno.rs | 2 +- src/main.rs | 2 +- src/msg_util.rs | 2 +- src/ops.rs | 2 +- src/repl.rs | 2 +- src/resources.rs | 2 +- src/snapshot.rs | 2 +- src/tokio_util.rs | 2 +- src/version.rs | 2 +- tools/benchmark.py | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/LICENSE b/LICENSE index bd98abb828..5a671244de 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 2344cfc040..773612b26a 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 /// diff --git a/js/blob.ts b/js/blob.ts index 4717a28fbb..96aae496e8 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 293d475dde..1425541673 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 385e6345dd..74b211f84d 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 f731a026e4..75f4524db3 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 5031fb0bfd..ceb11f8610 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 8afe64d7f9..21aab180ae 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 396def5457..456d3485e9 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 e3349054bb..3f045db86f 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 255d977bf1..a4e8d210c2 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 807fbb9d0f..02f13c6f35 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 86a6990d62..2e82613e86 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. /// diff --git a/src/deno_dir.rs b/src/deno_dir.rs index 1af5daa3f7..5ae1c66d94 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 85f4106c4f..1c0f5bd33c 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 ec96c96a6c..f16ba62995 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 0740e6c46d..befb15ab8e 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 228b4431e0..1b860b0578 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 e75e3ec2d6..235463ff1c 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 8c289911e1..3d8ae6791a 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 4d5b92d587..b70e47912f 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 7b4e143217..1678773351 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 cce6c4e602..bdc2c54c10 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 6c65a38587..364a9cf7ed 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 ae5e2dc51e..4517c068f9 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 1ec46e4457..5b2598728e 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 6dcaf9cf71..835e6dbffc 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 dd1ad00562..f1497f2143 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 264395093b..e9457850e3 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 6d295453fb..2780822f1d 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 0d4c7b9535..0f328874fa 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 9217eceec8..000d12993c 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.