From 563eb4928832274f2d5a792526cd451fa6fcf408 Mon Sep 17 00:00:00 2001 From: Brandon Wood Date: Thu, 29 May 2014 09:59:51 -0800 Subject: [PATCH] updated license and assembly version --- LICENSE | 1 + Tests/Properties/AssemblyInfo.cs | 3 +-- dotMath/Core/Parser.cs | 34 ------------------------------ dotMath/EquationCompiler.cs | 34 ------------------------------ dotMath/Properties/AssemblyInfo.cs | 7 +++--- 5 files changed, 5 insertions(+), 74 deletions(-) diff --git a/LICENSE b/LICENSE index ff3bd4a..ddaaccc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,5 @@ Copyright (c) 2001-2004, Stephen Hebert +Copyright (c) 2014, Brandon Wood All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/Tests/Properties/AssemblyInfo.cs b/Tests/Properties/AssemblyInfo.cs index 449512c..0706ccd 100644 --- a/Tests/Properties/AssemblyInfo.cs +++ b/Tests/Properties/AssemblyInfo.cs @@ -6,9 +6,8 @@ // associated with an assembly. [assembly: AssemblyTitle("dotMath Unit Tests")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Steve Hebert and Hebert Software Services, LLC")] [assembly: AssemblyProduct("dotMath.Tests")] -[assembly: AssemblyCopyright("Copyright 2001-2004")] +[assembly: AssemblyCopyright("Copyright 2001-2004 Steve Hebert, 2014 Brandon Wood")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/dotMath/Core/Parser.cs b/dotMath/Core/Parser.cs index 3b7e2a6..712adce 100644 --- a/dotMath/Core/Parser.cs +++ b/dotMath/Core/Parser.cs @@ -4,40 +4,6 @@ namespace dotMath.Core { - /// - /// Copyright (c) 2001-2004, Stephen Hebert - /// Copyright (c) 2014, Brandon Wood - /// All rights reserved. - /// - /// - /// Redistribution and use in source and binary forms, with or without modification, - /// are permitted provided that the following conditions are met: - /// - /// Redistributions of source code must retain the above copyright notice, - /// this list of conditions and the following disclaimer. - /// - /// Redistributions in binary form must reproduce the above - /// copyright notice, this list of conditions and the following disclaimer - /// in the documentation and/or other materials provided with the distribution. - /// - /// Neither the name of the .Math, nor the names of its contributors - /// may be used to endorse or promote products derived from this software without - /// specific prior written permission. - /// - /// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - /// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - /// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - /// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - /// BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, - /// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - /// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - /// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - /// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - /// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - /// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - /// - /// - /// /// /// Responsible for traversing a given function and creating an enumerable set of tokens. /// diff --git a/dotMath/EquationCompiler.cs b/dotMath/EquationCompiler.cs index dacc596..6ef1dd2 100644 --- a/dotMath/EquationCompiler.cs +++ b/dotMath/EquationCompiler.cs @@ -6,40 +6,6 @@ namespace dotMath { - /// - /// Copyright (c) 2001-2004, Stephen Hebert - /// Copyright (c) 2014, Brandon Wood - /// All rights reserved. - /// - /// - /// Redistribution and use in source and binary forms, with or without modification, - /// are permitted provided that the following conditions are met: - /// - /// Redistributions of source code must retain the above copyright notice, - /// this list of conditions and the following disclaimer. - /// - /// Redistributions in binary form must reproduce the above - /// copyright notice, this list of conditions and the following disclaimer - /// in the documentation and/or other materials provided with the distribution. - /// - /// Neither the name of the .Math, nor the names of its contributors - /// may be used to endorse or promote products derived from this software without - /// specific prior written permission. - /// - /// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - /// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - /// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - /// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - /// BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, - /// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - /// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - /// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - /// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - /// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - /// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - /// - /// - /// /// /// EquationCompiler is the class that takes the parsed tokens and turns them /// into a network of pre-compiled objects that perform the designated functions. diff --git a/dotMath/Properties/AssemblyInfo.cs b/dotMath/Properties/AssemblyInfo.cs index dde0393..bc15f2a 100644 --- a/dotMath/Properties/AssemblyInfo.cs +++ b/dotMath/Properties/AssemblyInfo.cs @@ -7,9 +7,8 @@ [assembly: AssemblyTitle("dotMath Equation Compiler")] [assembly: AssemblyDescription("dotMath compiler library for algebraic equations")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Steve Hebert and Hebert Software Services, LLC")] [assembly: AssemblyProduct("dotMath")] -[assembly: AssemblyCopyright("Copyright 2001-2004")] +[assembly: AssemblyCopyright("Copyright 2001-2004 Steve Hebert, 2014 Brandon Wood")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -31,5 +30,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")]