Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
Update for v2.59
Browse files Browse the repository at this point in the history
  • Loading branch information
RickStrahl committed Jan 22, 2015
1 parent 2f9af05 commit d05fd8e
Show file tree
Hide file tree
Showing 13 changed files with 473 additions and 35 deletions.
4 changes: 2 additions & 2 deletions Westwind.Data/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ public class busCustomer : EfCodeFirstBusinessBase<Customer, WebStoreContext>
public IEnumerable<Customer> GetActiveCustomers()
{
DateTime dt = DateTime.UtcNow.AddYears(2);
DateTime dt = DateTime.UtcNow.AddYears(1);
return Context.Customers
.Where(cust => cust.Entered > DateTime.UtcNow.AddYears(-2));
.Where(cust => cust.Updated > DateTime.UtcNow.AddYears(-2));
}
public IEnumerable<Customer> GetCustomerWithoutOrders()
{
Expand Down
6 changes: 3 additions & 3 deletions Westwind.Web.Mvc/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Westwind Technologies")]
[assembly: AssemblyProduct("Westwind.Web.Mvc")]
[assembly: AssemblyCopyright("Copyright © West Wind Technologies, 2011-2014")]
[assembly: AssemblyCopyright("Copyright © West Wind Technologies, 2011-2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,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("2.58.*")]
[assembly: AssemblyFileVersion("2.56")]
[assembly: AssemblyVersion("2.59.*")]
[assembly: AssemblyFileVersion("2.59")]
6 changes: 3 additions & 3 deletions Westwind.Web.WebApi/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Westwind.Web.WebApi")]
[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyCopyright("Copyright © 2013-2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,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("2.58.*")]
[assembly: AssemblyFileVersion("2.58")]
[assembly: AssemblyVersion("2.59.*")]
[assembly: AssemblyFileVersion("2.59")]
4 changes: 2 additions & 2 deletions Westwind.Web.WebForms/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,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("2.58.*")]
[assembly: AssemblyFileVersion("2.58")]
[assembly: AssemblyVersion("2.59.*")]
[assembly: AssemblyFileVersion("2.59")]
Binary file modified libs/Westwind.Data.MongoDb.dll
Binary file not shown.
429 changes: 426 additions & 3 deletions libs/Westwind.Data.MongoDb.xml

Large diffs are not rendered by default.

Binary file modified libs/Westwind.Data.dll
Binary file not shown.
Binary file modified libs/Westwind.Utilities.dll
Binary file not shown.
56 changes: 34 additions & 22 deletions libs/Westwind.Utilities.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified libs/Westwind.Web.Mvc.dll
Binary file not shown.
Binary file modified libs/Westwind.Web.WebApi.dll
Binary file not shown.
Binary file modified libs/Westwind.Web.dll
Binary file not shown.
3 changes: 3 additions & 0 deletions libs/Westwind.Web.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d05fd8e

Please sign in to comment.