Skip to content

Commit 1be3339

Browse files
Merge pull request #40 from netclaw-dev/release/0.1.1
Prepare for 0.1.1 release
2 parents 64f78ca + d452f65 commit 1be3339

2 files changed

Lines changed: 19 additions & 25 deletions

File tree

Directory.Build.props

Lines changed: 8 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1111
<PackageTags>agent-skills;ai;skills;skill-server;netclaw</PackageTags>
1212
</PropertyGroup>
13-
1413
<!-- C# Language Settings -->
1514
<PropertyGroup>
1615
<LangVersion>latest</LangVersion>
@@ -19,60 +18,44 @@
1918
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2019
<NoWarn>$(NoWarn);CS1591</NoWarn>
2120
</PropertyGroup>
22-
2321
<!-- Version Management -->
2422
<PropertyGroup>
25-
<VersionPrefix>0.1.0</VersionPrefix>
26-
<PackageReleaseNotes>Initial release of SkillServer and Netclaw.SkillClient.
23+
<VersionPrefix>0.1.1</VersionPrefix>
24+
<PackageReleaseNotes>**Bug Fixes**
25+
- Fix /health endpoint NotSupportedException from source-generated JSON serializer (#39)
2726

28-
**SkillServer**
29-
- Self-hosted skill registry for AI agent skills
30-
- AgentSkills.io SKILL.md standard support
31-
- Cloudflare Agent Skills Discovery RFC v0.2.0 compliance
32-
- FTS5 full-text search across skill content
33-
- Content-addressable blob storage (SHA-256)
34-
- API key authentication for write operations with SHA-256 hashing
35-
- SQLite-backed metadata with Dapper
36-
- SDK container support with linux-x64 and linux-arm64 images
37-
- Batch update checking endpoint
27+
**CI/CD**
28+
- Add --skip-duplicate to NuGet push commands to prevent duplicate package errors (#36)
3829

39-
**Netclaw.SkillClient**
40-
- Typed .NET client library for SkillServer
41-
- AOT-compatible with source generators
42-
- Full-text search, version resolution, and batch update checking</PackageReleaseNotes>
30+
**Dependency Updates**
31+
- Bump YamlDotNet from 16.3.0 to 17.0.1 (#38)</PackageReleaseNotes>
4332
</PropertyGroup>
44-
4533
<!-- Default: non-packable unless explicitly set -->
4634
<PropertyGroup>
4735
<IsPackable>false</IsPackable>
4836
</PropertyGroup>
49-
5037
<!-- Target Framework Definitions -->
5138
<PropertyGroup>
5239
<NetLibVersion>net10.0</NetLibVersion>
5340
<NetTestVersion>net10.0</NetTestVersion>
5441
</PropertyGroup>
55-
5642
<!-- SourceLink Configuration -->
5743
<PropertyGroup>
5844
<PublishRepositoryUrl>true</PublishRepositoryUrl>
5945
<EmbedUntrackedSources>true</EmbedUntrackedSources>
6046
<IncludeSymbols>true</IncludeSymbols>
6147
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
6248
</PropertyGroup>
63-
6449
<ItemGroup>
6550
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
6651
</ItemGroup>
67-
6852
<!-- NuGet Package Assets -->
6953
<ItemGroup>
7054
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
7155
<None Include="$(MSBuildThisFileDirectory)netclaw-icon.png" Pack="true" PackagePath="\" />
7256
</ItemGroup>
73-
7457
<PropertyGroup>
7558
<PackageReadmeFile>README.md</PackageReadmeFile>
7659
<PackageIcon>netclaw-icon.png</PackageIcon>
7760
</PropertyGroup>
78-
</Project>
61+
</Project>

RELEASE_NOTES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
#### 0.1.1 April 24th 2026 ####
2+
3+
**Bug Fixes**
4+
- Fix /health endpoint NotSupportedException from source-generated JSON serializer (#39)
5+
6+
**CI/CD**
7+
- Add --skip-duplicate to NuGet push commands to prevent duplicate package errors (#36)
8+
9+
**Dependency Updates**
10+
- Bump YamlDotNet from 16.3.0 to 17.0.1 (#38)
11+
112
#### 0.1.0 April 23rd 2026 ####
213

314
Initial release of SkillServer and Netclaw.SkillClient.

0 commit comments

Comments
 (0)