Skip to content

Commit

Permalink
Replace 2019 with 2020 in notices
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceManiac committed Feb 19, 2020
1 parent c684952 commit 6c70374
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/cli/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ impl Context {

#[derive(StructOpt, Debug)]
#[structopt(name="dmm-tools",
author="Copyright (C) 2017-2019 Tad Hardesty",
author="Copyright (C) 2017-2020 Tad Hardesty",
about="This program comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to redistribute it under the conditions of the GNU
General Public License version 3.")]
Expand Down
2 changes: 1 addition & 1 deletion src/dmdoc/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use dm::docs::*;
use markdown::DocBlock;

const BUILD_INFO: &str = concat!(
"dmdoc ", env!("CARGO_PKG_VERSION"), " Copyright (C) 2017-2019 Tad Hardesty\n",
"dmdoc ", env!("CARGO_PKG_VERSION"), " Copyright (C) 2017-2020 Tad Hardesty\n",
include_str!(concat!(env!("OUT_DIR"), "/build-info.txt")), "\n",
"This program comes with ABSOLUTELY NO WARRANTY. This is free software,\n",
"and you are welcome to redistribute it under the conditions of the GNU\n",
Expand Down
2 changes: 1 addition & 1 deletion src/dreamchecker/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fn main() {
while let Some(arg) = args.next() {
if arg == "-V" || arg == "--version" {
println!(
"dreamchecker {} Copyright (C) 2017-2019 Tad Hardesty",
"dreamchecker {} Copyright (C) 2017-2020 Tad Hardesty",
env!("CARGO_PKG_VERSION")
);
println!("{}", include_str!(concat!(env!("OUT_DIR"), "/build-info.txt")));
Expand Down
2 changes: 1 addition & 1 deletion src/editor/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ impl EditorScene {
ui.menu(im_str!("Help"), true, || {
ui.menu(im_str!("About SpacemanDMM"), true, || {
ui.text(&im_str!(
"{} {} Copyright (C) 2017-2019 Tad Hardesty",
"{} {} Copyright (C) 2017-2020 Tad Hardesty",
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_VERSION"),
));
Expand Down
2 changes: 1 addition & 1 deletion src/langserver/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ fn main() {
std::env::set_var("RUST_BACKTRACE", "1");

eprintln!(
"dm-langserver {} Copyright (C) 2017-2019 Tad Hardesty",
"dm-langserver {} Copyright (C) 2017-2020 Tad Hardesty",
env!("CARGO_PKG_VERSION")
);
eprintln!("This program comes with ABSOLUTELY NO WARRANTY. This is free software,");
Expand Down

0 comments on commit 6c70374

Please sign in to comment.