diff --git a/CHANGELOG.md b/CHANGELOG.md index 23620643e..1ea950bd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.3.0 Jul 20, 2015 + +- Add support for beta5 apps +- Remove support for beta4 apps +- Fix Mono missing trusted root certificates + ## v0.2.0 Jun 22, 2015 - Add support for beta4 apps diff --git a/README.md b/README.md index 68f2bcdc1..699b91aba 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Cloud Foundry buildpack: ASP.NET 5 -A Cloud Foundry buildpack for ASP.NET 5 ([beta4][]) apps. For more information about ASP.NET 5 see: +A Cloud Foundry buildpack for ASP.NET 5 ([beta5][]) apps. For more information about ASP.NET 5 see: * https://github.com/aspnet/home * http://docs.asp.net/en/latest/conceptual-overview/aspnet.html @@ -69,3 +69,4 @@ Open an issue on this project. [Hello World sample]: https://github.com/IBM-Bluemix/asp.net5-helloworld [beta4]: https://github.com/aspnet/Home/releases/tag/v1.0.0-beta4 +[beta5]: https://github.com/aspnet/Home/releases/tag/v1.0.0-beta5 diff --git a/VERSION b/VERSION index 0ea3a944b..0d91a54c7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.0 +0.3.0 diff --git a/resources/Nowin.vNext/NowinServerFactory.cs b/resources/Nowin.vNext/NowinServerFactory.cs index 270054be7..6011b7754 100644 --- a/resources/Nowin.vNext/NowinServerFactory.cs +++ b/resources/Nowin.vNext/NowinServerFactory.cs @@ -21,7 +21,7 @@ using Microsoft.AspNet.FeatureModel; using Microsoft.AspNet.Hosting.Server; using Microsoft.AspNet.Owin; -using Microsoft.Framework.ConfigurationModel; +using Microsoft.Framework.Configuration; using Nowin; namespace Nowin.vNext diff --git a/resources/Nowin.vNext/project.json b/resources/Nowin.vNext/project.json index 3568d1096..bee339205 100644 --- a/resources/Nowin.vNext/project.json +++ b/resources/Nowin.vNext/project.json @@ -1,12 +1,11 @@ { "version": "1.0.0-*", "dependencies": { - "Nowin": "0.11.0", - "Microsoft.AspNet.Owin": "1.0.0-beta4", - "Microsoft.AspNet.Hosting": "1.0.0-beta4" + "Nowin": "0.17.1", + "Microsoft.AspNet.Owin": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5" }, "frameworks": { - "dnx451": { }, - "dnxcore50": { } + "dnx451": { } } }