From e8c9118379d42ff5e36347ac91e901f118765834 Mon Sep 17 00:00:00 2001 From: ferris Date: Sat, 16 Dec 2017 19:39:39 +0100 Subject: [PATCH] Update licenses/readmes/versions --- LICENSE-APACHE | 2 +- LICENSE-MIT | 2 +- doc/README | 6 +++--- rustual-boy-cli/Cargo.lock | 2 +- rustual-boy-cli/Cargo.toml | 2 +- rustual-boy-cli/src/argparse.rs | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/LICENSE-APACHE b/LICENSE-APACHE index 99c718e..a9cffd2 100644 --- a/LICENSE-APACHE +++ b/LICENSE-APACHE @@ -186,7 +186,7 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright 2016-2017 Jake Taylor +Copyright 2016-2018 Jake Taylor Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/LICENSE-MIT b/LICENSE-MIT index 7731c8a..5e1fcc6 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,4 +1,4 @@ -Copyright (c) 2016-2017 Jake Taylor +Copyright (c) 2016-2018 Jake Taylor Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated diff --git a/doc/README b/doc/README index b8e9a18..36b3c93 100644 --- a/doc/README +++ b/doc/README @@ -1,7 +1,7 @@ Rustual Boy - A Virtual Boy emulator ==================================== -This is a very early build, and, as such, does not yet have proper documentation. +This is a pre-1.0 build, and, as such, does not yet have proper documentation. Please visit https://github.com/emu-rs/rustual-boy for more info! Rustual Boy is primarily distributed under the terms of both the MIT license and @@ -12,6 +12,6 @@ but it depends on a number of libraries which carry their own copyright notices and license terms. These libraries are normally all linked static into the binary distributions of Rustual Boy. See LICENSE-THIRD-PARTY for more info. -(C) 2016-2017 Jake "ferris" Taylor and the Rustual Boy contributors -http://rustualboy.com/ +(C) 2016-2018 Jake "ferris" Taylor and the Rustual Boy contributors +https://rustualboy.com/ https://github.com/emu-rs/rustual-boy diff --git a/rustual-boy-cli/Cargo.lock b/rustual-boy-cli/Cargo.lock index 74c64d5..1e745a5 100644 --- a/rustual-boy-cli/Cargo.lock +++ b/rustual-boy-cli/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "rustual-boy-cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap 2.27.0 (registry+https://github.com/rust-lang/crates.io-index)", "combine 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/rustual-boy-cli/Cargo.toml b/rustual-boy-cli/Cargo.toml index dcded02..84c8667 100644 --- a/rustual-boy-cli/Cargo.toml +++ b/rustual-boy-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustual-boy-cli" -version = "0.1.0" +version = "0.2.0" authors = ["ferris ", "The Rustual Boy contributors"] description = "A CLI frontend for rustual-boy-core" readme = "README.md" diff --git a/rustual-boy-cli/src/argparse.rs b/rustual-boy-cli/src/argparse.rs index 9443bb8..883c664 100644 --- a/rustual-boy-cli/src/argparse.rs +++ b/rustual-boy-cli/src/argparse.rs @@ -7,7 +7,7 @@ pub struct CommandLineConfig { pub fn parse_args() -> CommandLineConfig { let app = App::new("Rustual Boy") - .version("0.1.0") + .version("0.2.0") .author(crate_authors!(", ")) .about("A CLI frontend to the Rustual Boy emulator") .arg(Arg::with_name("ROM")