Skip to content

Commit befd203

Browse files
Release v0.1.7 (#14)
Signed-off-by: Philip Conrad <[email protected]>
1 parent 0f54c8e commit befd203

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file. This
44
project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## 0.1.7
7+
8+
This release includes minor documentation fixes.
9+
610
## 0.1.6
711

812
This release includes minor documentation comment fixes.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ dotnet add package Styra.Opa.AspNetCore
2323
## SDK Example Usage (high-level)
2424

2525
```csharp
26+
using Styra.Opa;
2627
using Styra.Opa.AspNetCore;
2728

2829
// ...
2930
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);
3233

3334
var builder = new WebHostBuilder()
3435
.ConfigureServices(services =>

src/Styra.Opa.AspNetCore/Styra.Opa.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<PackageId>Styra.Opa.AspNetCore</PackageId>
4-
<Version>0.1.6</Version>
4+
<Version>0.1.7</Version>
55
<Authors>Styra</Authors>
66
<TargetFramework>net8.0</TargetFramework>
77
<IsPackable>true</IsPackable>

0 commit comments

Comments
 (0)