File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file. This
4
4
project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
5
5
6
+ ## 0.1.7
7
+
8
+ This release includes minor documentation fixes.
9
+
6
10
## 0.1.6
7
11
8
12
This release includes minor documentation comment fixes.
Original file line number Diff line number Diff line change @@ -23,12 +23,13 @@ dotnet add package Styra.Opa.AspNetCore
23
23
## SDK Example Usage (high-level)
24
24
25
25
``` csharp
26
+ using Styra .Opa ;
26
27
using Styra .Opa .AspNetCore ;
27
28
28
29
// ...
29
30
30
- string opaURL = System .Environment .GetEnvironmentVariable (" OPA_URL" ) ?? " http://localhost:8181" ;
31
- OPAClient opa = new OPAClient ( opaURL );
31
+ string opaUrl = System .Environment .GetEnvironmentVariable (" OPA_URL" ) ?? " http://localhost:8181" ;
32
+ OpaClient opa = new OpaClient ( opaUrl );
32
33
33
34
var builder = new WebHostBuilder ()
34
35
.ConfigureServices (services =>
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<PackageId >Styra.Opa.AspNetCore</PackageId >
4
- <Version >0.1.6 </Version >
4
+ <Version >0.1.7 </Version >
5
5
<Authors >Styra</Authors >
6
6
<TargetFramework >net8.0</TargetFramework >
7
7
<IsPackable >true</IsPackable >
You can’t perform that action at this time.
0 commit comments