Skip to content

Commit

Permalink
Release v0.1.7 (#14)
Browse files Browse the repository at this point in the history
Signed-off-by: Philip Conrad <[email protected]>
  • Loading branch information
philipaconrad authored Sep 25, 2024
1 parent 0f54c8e commit befd203
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file. This
project adheres to [Semantic Versioning](http://semver.org/).

## 0.1.7

This release includes minor documentation fixes.

## 0.1.6

This release includes minor documentation comment fixes.
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ dotnet add package Styra.Opa.AspNetCore
## SDK Example Usage (high-level)

```csharp
using Styra.Opa;
using Styra.Opa.AspNetCore;

// ...
string opaURL = System.Environment.GetEnvironmentVariable("OPA_URL") ?? "http://localhost:8181";
OPAClient opa = new OPAClient(opaURL);
string opaUrl = System.Environment.GetEnvironmentVariable("OPA_URL") ?? "http://localhost:8181";
OpaClient opa = new OpaClient(opaUrl);

var builder = new WebHostBuilder()
.ConfigureServices(services =>
Expand Down
2 changes: 1 addition & 1 deletion src/Styra.Opa.AspNetCore/Styra.Opa.AspNetCore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Styra.Opa.AspNetCore</PackageId>
<Version>0.1.6</Version>
<Version>0.1.7</Version>
<Authors>Styra</Authors>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>true</IsPackable>
Expand Down

0 comments on commit befd203

Please sign in to comment.