diff --git a/CHANGELOG.md b/CHANGELOG.md index 85f40c0..cca901e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Lib.Web.Mvc 6.8.0 +### Additions and Changes +- Added support for HTTP/2 Server Push (with Cache Digest) via PushPromiseAttribute and PushPromiseExtensions + ## Lib.Web.Mvc 6.7.0 ### Bug Fixes - Fix for bug in DeserializeJqGridColumnSearchOptions and DeserializeJqGridColumnEditOptions (thanks to @glazkovalex) diff --git a/LICENSE.md b/LICENSE.md index ab3f644..2609ab8 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2009 - 2016 Tomasz Pęczek +Copyright (c) 2009 - 2017 Tomasz Pęczek Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/Lib.Web.Mvc/Lib.Web.Mvc.csproj b/Lib.Web.Mvc/Lib.Web.Mvc.csproj index 02a44d7..fc2ce26 100644 --- a/Lib.Web.Mvc/Lib.Web.Mvc.csproj +++ b/Lib.Web.Mvc/Lib.Web.Mvc.csproj @@ -10,7 +10,7 @@ Properties Lib.Web.Mvc Lib.Web.Mvc - v4.6.1 + v4.6 512 ..\..\jqGrid Helper Examples\ diff --git a/Lib.Web.Mvc/Properties/AssemblyInfo.cs b/Lib.Web.Mvc/Properties/AssemblyInfo.cs index d52e8fe..a553671 100644 --- a/Lib.Web.Mvc/Properties/AssemblyInfo.cs +++ b/Lib.Web.Mvc/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Tomasz Pęczek")] [assembly: AssemblyProduct("Lib.Web.Mvc")] -[assembly: AssemblyCopyright("Copyright © 2009 - 2016 Tomasz Pęczek")] +[assembly: AssemblyCopyright("Copyright © 2009 - 2017 Tomasz Pęczek")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -18,5 +18,5 @@ // to COM components. If you need to access a type in this assembly from [assembly: ComVisible(false)] [assembly: Guid("68e6372a-38aa-427a-b5f8-1952175d5ccd")] -[assembly: AssemblyVersion("6.7.0.0")] -[assembly: AssemblyFileVersion("6.7.0.0")] +[assembly: AssemblyVersion("6.8.0.0")] +[assembly: AssemblyFileVersion("6.8.0.0")] diff --git a/README.md b/README.md index 963ab4d..760212a 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,8 @@ There is also a series of blog posts describing key features of the library: - [jqGrid Strongly Typed Helper - jQuery UI Integrations](http://tpeczek.blogspot.com/2013/02/jqgrid-strongly-typed-helper-jquery-ui.html) - [Range Requests in ASP.NET MVC – RangeFileResult](http://tpeczek.blogspot.com/2011/10/range-requests-in-aspnet-mvc.html) (How RangeFileResult works) - [Content Security Policy in ASP.NET MVC - Scripts](http://tpeczek.blogspot.com/2015/06/content-security-policy-in-aspnet-mvc.html) (How ContentSecurityPolicyAttribute and ContentSecurityPolicyExtensions work) +- [HTTP/2 Server Push and ASP.NET MVC](http://tpeczek.blogspot.com/2016/12/one-of-new-features-in-http2-is-server.html) +- [HTTP/2 Server Push and ASP.NET MVC - Cache Digest](http://tpeczek.blogspot.com/2017/01/http2-server-push-and-aspnet-mvc-cache.html) ## Usage examples @@ -58,7 +60,7 @@ Visit the [Contributor Guidelines](https://github.com/tpeczek/Lib.Web.Mvc/blob/m ## Copyright and License -Copyright © 2009 - 2016 Tomasz Pęczek +Copyright © 2009 - 2017 Tomasz Pęczek From October 2009 to August 2014 licensed under the Ms-PL License.