Skip to content

Commit

Permalink
Update copyright year
Browse files Browse the repository at this point in the history
  • Loading branch information
rprouse committed Mar 20, 2022
1 parent 25b376e commit d05d9b4
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 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) 2021 Charlie Poole, Rob Prouse
Copyright (c) 2022 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) 2021 Charlie Poole, Rob Prouse</copyright>
<copyright>Copyright (c) 2022 Charlie Poole, Rob Prouse</copyright>
<dependencies>
<group targetFramework="net35" />
<group targetFramework="net40" />
Expand Down
6 changes: 3 additions & 3 deletions nuget/nunitlite/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2021 Charlie Poole, Rob Prouse
// Copyright (c) 2022 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
Expand All @@ -8,10 +8,10 @@
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Expand Down
6 changes: 3 additions & 3 deletions nuget/nunitlite/Program.vb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
' ***********************************************************************
' Copyright (c) 2021 Charlie Poole, Rob Prouse
' Copyright (c) 2022 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
Expand All @@ -8,10 +8,10 @@
' distribute, sublicense, and/or sell copies of the Software, and to
' permit persons to whom the Software is furnished to do so, subject to
' the following conditions:
'
'
' The above copyright notice and this permission notice shall be
' included in all copies or substantial portions of the Software.
'
'
' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
' EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
' MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Expand Down
2 changes: 1 addition & 1 deletion nuget/nunitlite/nunitlite.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,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) 2021 Charlie Poole, Rob Prouse</copyright>
<copyright>Copyright (c) 2022 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) 2021 Charlie Poole, Rob Prouse")]
[assembly: AssemblyCopyright("Copyright (c) 2022 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) 2021 Charlie Poole, Rob Prouse";
string copyright = "Copyright (C) 2022 Charlie Poole, Rob Prouse";
string build = "";

var copyrightAttr = executingAssembly.GetCustomAttribute<AssemblyCopyrightAttribute>();
Expand Down

0 comments on commit d05d9b4

Please sign in to comment.