Skip to content

Commit b25b07e

Browse files
Release v0.2.1 (#84)
Signed-off-by: Philip Conrad <[email protected]>
1 parent 5d0b309 commit b25b07e

File tree

6 files changed

+65
-1
lines changed

6 files changed

+65
-1
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.2.1
7+
8+
This release includes support for publishing DocFX reference docs.
9+
610
## 0.2.0
711

812
This release includes release engineering improvements for the Github Releases and NuGet publishing workflows.

docs/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site/*
2+
api/*

docs/docfx.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"build": {
3+
"content": [
4+
{
5+
"exclude": [
6+
"_site/**"
7+
],
8+
"files": [
9+
"**/*.{md,yml}"
10+
]
11+
},
12+
{
13+
"files": [
14+
"README.md"
15+
],
16+
"src": "../"
17+
}
18+
],
19+
"globalMetadata": {
20+
"_appName": "OPA ASP .NET Core SDK",
21+
"_appTitle": "OPA ASP .NET Core SDK",
22+
"_enableSearch": true,
23+
"pdf": false
24+
},
25+
"output": "_site",
26+
"resource": [
27+
{
28+
"files": [
29+
"images/**"
30+
]
31+
}
32+
],
33+
"template": [
34+
"default",
35+
"modern"
36+
]
37+
},
38+
"metadata": [
39+
{
40+
"dest": "api",
41+
"src": [
42+
{
43+
"files": [
44+
"*.csproj"
45+
],
46+
"src": "../src/OpenPolicyAgent.Opa.AspNetCore"
47+
}
48+
]
49+
}
50+
]
51+
}

docs/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
_layout: landing
3+
---
4+
5+
[!INCLUDE [](../README.md)]

docs/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- name: API Reference
2+
href: api/

src/OpenPolicyAgent.Opa.AspNetCore/OpenPolicyAgent.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>OpenPolicyAgent.Opa.AspNetCore</PackageId>
4-
<Version>0.2.0</Version>
4+
<Version>0.2.1</Version>
55
<Authors>The OPA Authors</Authors>
66
<TargetFramework>net8.0</TargetFramework>
77
<IsPackable>true</IsPackable>

0 commit comments

Comments
 (0)