Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
release v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Mar 13, 2014
1 parent 12665eb commit 6cf681f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .nuspec/WebApiThrottle.nuspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<version>1.0.0</version>
<version>1.1.0</version>
<authors>Stefan Prodan</authors>
<owners>Stefan Prodan</owners>
<id>WebApiThrottle</id>
<title>ASP.NET Web API throttling handler</title>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>WebApiThrottle handler is designed for controlling the rate of requests that clients can make to an API based on IP address, client API key and request route.</description>
<copyright>Stefan Prodan 2013</copyright>
<tags>ASP.NET Web API, throttling, rate limits</tags>
<tags>ASP.NET Web API, Owin, throttling, rate limits</tags>
<projectUrl>https://github.com/stefanprodan/WebApiThrottle</projectUrl>
<language>en-US</language>
<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions WebApiThrottle/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
2 changes: 1 addition & 1 deletion WebApiThrottler.SelfHostOwinDemo/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void Configuration(IAppBuilder appBuilder)
defaults: new { id = RouteParameter.Optional }
);

//Web API throttling load policy from web.config
//Web API throttling load policy from app.config
config.MessageHandlers.Add(new ThrottlingHandler()
{
Policy = ThrottlePolicy.FromStore(new PolicyConfigurationProvider()),
Expand Down

0 comments on commit 6cf681f

Please sign in to comment.