Skip to content

Commit

Permalink
Updates copyright to 2019
Browse files Browse the repository at this point in the history
  • Loading branch information
rprouse committed May 14, 2019
1 parent c375f06 commit 735ecc5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion nuget/framework/nunit.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Supported platforms:
<releaseNotes>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.</releaseNotes>
<language>en-US</language>
<tags>nunit test testing tdd framework fluent assert theory plugin addin</tags>
<copyright>Copyright (c) 2018 Charlie Poole, Rob Prouse</copyright>
<copyright>Copyright (c) 2019 Charlie Poole, Rob Prouse</copyright>
<dependencies>
<group targetFramework="net35" />
<group targetFramework="net40" />
Expand Down
2 changes: 1 addition & 1 deletion nuget/nunitlite/nunitlite.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.</description>
<language>en-US</language>
<tags>test unit testing tdd framework fluent assert device phone embedded</tags>
<copyright>Copyright (c) 2018 Charlie Poole, Rob Prouse</copyright>
<copyright>Copyright (c) 2019 Charlie Poole, Rob Prouse</copyright>
<dependencies>
<group targetFramework="net35">
<dependency id="NUnit" version="[$version$]" />
Expand Down
2 changes: 1 addition & 1 deletion src/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/NUnitFramework/nunitlite/TextUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<AssemblyCopyrightAttribute>();
Expand Down

0 comments on commit 735ecc5

Please sign in to comment.