Skip to content

Commit

Permalink
Constrain Flurl dependency to <2.0.0. Fixes #91.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Beauchamp committed May 24, 2016
1 parent 742681f commit 7df0890
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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! Supports both WebApi and OData controllers!</Summary>
<Description>Extends Swashbuckle with OData v4 support! Supports both WebApi and OData controllers!</Description>
<ReleaseNotes>Supports ODataRoutePrefix attribute (fixes #71). Added missing CLR type (byte) #89</ReleaseNotes>
<ReleaseNotes>Supports ODataRoutePrefix attribute (fixes #71). Added missing CLR type (byte) #89. Constrain Flurl dependency to &lt;v2.0.0</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.18.1</Version>
<Version>2.18.2</Version>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Swashbuckle.OData\Swashbuckle.OData.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion Swashbuckle.OData.Tests/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package id="coveralls.io" version="1.3.4" targetFramework="net452" />
<package id="EntityFramework" version="6.1.3" targetFramework="net452" />
<package id="FluentAssertions" version="4.2.2" targetFramework="net452" />
<package id="Flurl" version="1.0.10" targetFramework="net452" />
<package id="Flurl" version="1.0.10" allowedVersions="(,2.0.0)" targetFramework="net452" />
<package id="Microsoft.AspNet.OData" version="5.7.0" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net452" />
Expand Down
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.18.1")]
[assembly: AssemblyInformationalVersion("2.18.2")]
4 changes: 2 additions & 2 deletions Swashbuckle.OData/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Flurl" version="1.0.10" targetFramework="net452" />
<package id="Microsoft.AspNet.OData" version="5.7.0" targetFramework="net452" />
<package id="Flurl" version="1.0.10" allowedVersions="(,2.0.0)" targetFramework="net452" />
<package id="Microsoft.AspNet.OData" version="5.7.0" targetFramework="net452"/>
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi.WebHost" version="5.2.3" targetFramework="net452" />
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.18.1.{build}
version: 2.18.2.{build}

before_build:
- cmd: nuget restore
Expand Down

0 comments on commit 7df0890

Please sign in to comment.