From 735ecc59fd5da568cff421f6e41b228db9e24257 Mon Sep 17 00:00:00 2001 From: Rob Prouse Date: Mon, 13 May 2019 20:52:25 -0400 Subject: [PATCH] Updates copyright to 2019 --- LICENSE.txt | 2 +- nuget/framework/nunit.nuspec | 2 +- nuget/nunitlite/nunitlite.nuspec | 2 +- src/CommonAssemblyInfo.cs | 2 +- src/NUnitFramework/nunitlite/TextUI.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index d1fc75345e..b029a77c34 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2018 Charlie Poole, Rob Prouse +Copyright (c) 2019 Charlie Poole, Rob Prouse 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/nuget/framework/nunit.nuspec b/nuget/framework/nunit.nuspec index cdc006f0be..6111c27749 100644 --- a/nuget/framework/nunit.nuspec +++ b/nuget/framework/nunit.nuspec @@ -23,7 +23,7 @@ Supported platforms: This package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly. en-US nunit test testing tdd framework fluent assert theory plugin addin - Copyright (c) 2018 Charlie Poole, Rob Prouse + Copyright (c) 2019 Charlie Poole, Rob Prouse diff --git a/nuget/nunitlite/nunitlite.nuspec b/nuget/nunitlite/nunitlite.nuspec index cdbfb4da1f..f1106fa239 100644 --- a/nuget/nunitlite/nunitlite.nuspec +++ b/nuget/nunitlite/nunitlite.nuspec @@ -26,7 +26,7 @@ How to use this package: 3. Add your tests to the test project and simply start the project to execute them. en-US test unit testing tdd framework fluent assert device phone embedded - Copyright (c) 2018 Charlie Poole, Rob Prouse + Copyright (c) 2019 Charlie Poole, Rob Prouse diff --git a/src/CommonAssemblyInfo.cs b/src/CommonAssemblyInfo.cs index 6f38ae5ab0..02a7009ba9 100644 --- a/src/CommonAssemblyInfo.cs +++ b/src/CommonAssemblyInfo.cs @@ -28,7 +28,7 @@ // [assembly: AssemblyCompany("NUnit Software")] [assembly: AssemblyProduct("NUnit 3")] -[assembly: AssemblyCopyright("Copyright (c) 2018 Charlie Poole, Rob Prouse")] +[assembly: AssemblyCopyright("Copyright (c) 2019 Charlie Poole, Rob Prouse")] [assembly: AssemblyTrademark("NUnit is a trademark of NUnit Software")] #if DEBUG diff --git a/src/NUnitFramework/nunitlite/TextUI.cs b/src/NUnitFramework/nunitlite/TextUI.cs index c4451950f8..bca4cd9f25 100644 --- a/src/NUnitFramework/nunitlite/TextUI.cs +++ b/src/NUnitFramework/nunitlite/TextUI.cs @@ -73,7 +73,7 @@ public void DisplayHeader() Assembly executingAssembly = GetType().GetTypeInfo().Assembly; AssemblyName assemblyName = AssemblyHelper.GetAssemblyName(executingAssembly); Version version = assemblyName.Version; - string copyright = "Copyright (C) 2018 Charlie Poole, Rob Prouse"; + string copyright = "Copyright (C) 2019 Charlie Poole, Rob Prouse"; string build = ""; var copyrightAttr = executingAssembly.GetCustomAttribute();