Skip to content

Commit

Permalink
Fixes #68: disallow dependency on Swashbuckle.Core >5.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Beauchamp committed Feb 15, 2016
1 parent 903a94e commit be2eeef
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Swashbuckle.OData.Nuget/Swashbuckle.OData.NuGet.nuproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
<Owners>Richard Beauchamp</Owners>
<Summary>Extends Swashbuckle with OData v4 support!</Summary>
<Description>Extends Swashbuckle with OData v4 support!</Description>
<ReleaseNotes>Configuration option now allows Navigation Properties to be included in the entity swagger models. Fixes #69.</ReleaseNotes>
<ReleaseNotes>Configuration option now allows Navigation Properties to be included in the entity swagger models. Fixes #69, #68.</ReleaseNotes>
<ProjectUrl>https://github.com/rbeauchamp/Swashbuckle.OData</ProjectUrl>
<LicenseUrl>https://github.com/rbeauchamp/Swashbuckle.OData/blob/master/License.txt</LicenseUrl>
<Copyright>Copyright 2015</Copyright>
<Tags>Swashbuckle Swagger SwaggerUi OData Documentation Discovery Help WebApi AspNet AspNetWebApi Docs WebHost IIS</Tags>
<Version>2.16.1</Version>
<Version>2.16.2</Version>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Swashbuckle.OData\Swashbuckle.OData.csproj" />
Expand Down
4 changes: 2 additions & 2 deletions Swashbuckle.OData.Sample/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<package id="Microsoft.Spatial" version="6.14.0" targetFramework="net452" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net452" />
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net452" />
<package id="Swashbuckle" version="5.2.2" targetFramework="net452" />
<package id="Swashbuckle.Core" version="5.2.2" targetFramework="net452" />
<package id="Swashbuckle" version="5.2.2" allowedVersions="[5.0.0,5.2.2]" targetFramework="net452" />
<package id="Swashbuckle.Core" version="5.2.2" allowedVersions="[5.0.0,5.2.2]" targetFramework="net452" />
<package id="WebActivatorEx" version="2.1.0" targetFramework="net452" />
</packages>
2 changes: 1 addition & 1 deletion Swashbuckle.OData.Tests/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
<package id="OpenCover" version="4.6.166" targetFramework="net452" />
<package id="Owin" version="1.0" targetFramework="net452" />
<package id="ReportGenerator" version="2.3.5.0" targetFramework="net452" />
<package id="Swashbuckle.Core" version="5.2.2" targetFramework="net452" />
<package id="Swashbuckle.Core" version="5.2.2" allowedVersions="[5.0.0,5.2.2]" targetFramework="net452" />
</packages>
2 changes: 1 addition & 1 deletion Swashbuckle.OData/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("2.16.1")]
[assembly: AssemblyInformationalVersion("2.16.2")]
2 changes: 1 addition & 1 deletion Swashbuckle.OData/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net452" />
<package id="NuProj" version="0.10.4-beta-gf7fc34e7d8" targetFramework="net452" developmentDependency="true" />
<package id="NuProj.Common" version="0.10.4-beta" targetFramework="net452" developmentDependency="true" />
<package id="Swashbuckle.Core" version="5.2.2" targetFramework="net452" />
<package id="Swashbuckle.Core" version="5.2.2" allowedVersions="[5.0.0,5.2.2]" targetFramework="net452" />
</packages>
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.16.1.{build}
version: 2.16.2.{build}

before_build:
- cmd: nuget restore
Expand Down

0 comments on commit be2eeef

Please sign in to comment.