Skip to content

Commit 06ce922

Browse files
authored
Merge pull request #2 from encryption4all/release-please--branches--main--components--E4A.PostGuard
chore(main): release E4A.PostGuard 0.2.0
2 parents 851f06a + 44ae83f commit 06ce922

3 files changed

Lines changed: 27 additions & 8 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.2"
2+
".": "0.2.0"
33
}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/encryption4all/postguard-dotnet/compare/E4A.PostGuard-v0.1.2...E4A.PostGuard-v0.2.0) (2026-04-10)
4+
5+
6+
### Features
7+
8+
* implement PostGuard .NET SDK ([197dcfb](https://github.com/encryption4all/postguard-dotnet/commit/197dcfb2dd97b4977fcf81ad0a9b6bea689ab14d))
9+
10+
11+
### Bug Fixes
12+
13+
* remove invalid release-please action inputs ([588221d](https://github.com/encryption4all/postguard-dotnet/commit/588221d90894ef190533d9eee87c1742cc00bad8))
14+
* set Content-Range as content header, not request header ([417b7e6](https://github.com/encryption4all/postguard-dotnet/commit/417b7e681c29a414f08fcacaa364e9306e40eaeb))
15+
* use gh release download to fetch pg-ffi native libraries ([1c2a544](https://github.com/encryption4all/postguard-dotnet/commit/1c2a544581588943648467893264d5b7be086c40))
16+
* use Node.js 24 for actions and target .NET 10 in CI ([a06e56a](https://github.com/encryption4all/postguard-dotnet/commit/a06e56a32b0e2254bcd2e170b49aa399c6c200b3))
17+
* use None items for native libs to ensure proper NuGet runtime bundling ([3203792](https://github.com/encryption4all/postguard-dotnet/commit/32037921a1900d645f23bc517d153b6a48f85d52))
18+
* use NuGet trusted publishing instead of API key ([b8bbb9c](https://github.com/encryption4all/postguard-dotnet/commit/b8bbb9cf2c26fdd29c082cdee6adcfe32c36d31a))
19+
* use NuGet/login action for trusted publishing OIDC flow ([0d1056f](https://github.com/encryption4all/postguard-dotnet/commit/0d1056f92c4856a92d26a95a6cf5ca26e4d586ec))
20+
* use single-line commands in publish workflow ([f912f72](https://github.com/encryption4all/postguard-dotnet/commit/f912f727cb0260afea9211eb735edc0799d76ae1))
21+
322
## [0.1.2](https://github.com/encryption4all/postguard-dotnet/compare/v0.1.1...v0.1.2) (2026-04-10)
423

524

src/E4A.PostGuard.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- NuGet package metadata -->
1111
<PackageId>E4A.PostGuard</PackageId>
12-
<Version>0.1.1</Version>
12+
<Version>0.2.0</Version>
1313
<Authors>Encryption 4 All</Authors>
1414
<Description>PostGuard .NET SDK — identity-based encryption for secure file sharing</Description>
1515
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -21,16 +21,16 @@
2121
</PropertyGroup>
2222

2323
<ItemGroup>
24-
<None Include="../README.md" Pack="true" PackagePath="" />
24+
<None Include="../README.md" Pack="true" PackagePath=""/>
2525
</ItemGroup>
2626

2727
<!-- Native pg-ffi libraries: pack into runtimes/ and copy to output at runtime -->
2828
<ItemGroup>
29-
<None Include="runtimes/linux-x64/native/**" Pack="true" PackagePath="runtimes/linux-x64/native" Link="runtimes/linux-x64/native/%(Filename)%(Extension)" />
30-
<None Include="runtimes/linux-arm64/native/**" Pack="true" PackagePath="runtimes/linux-arm64/native" Link="runtimes/linux-arm64/native/%(Filename)%(Extension)" />
31-
<None Include="runtimes/osx-arm64/native/**" Pack="true" PackagePath="runtimes/osx-arm64/native" Link="runtimes/osx-arm64/native/%(Filename)%(Extension)" />
32-
<None Include="runtimes/osx-x64/native/**" Pack="true" PackagePath="runtimes/osx-x64/native" Link="runtimes/osx-x64/native/%(Filename)%(Extension)" />
33-
<None Include="runtimes/win-x64/native/**" Pack="true" PackagePath="runtimes/win-x64/native" Link="runtimes/win-x64/native/%(Filename)%(Extension)" />
29+
<None Include="runtimes/linux-x64/native/**" Pack="true" PackagePath="runtimes/linux-x64/native" Link="runtimes/linux-x64/native/%(Filename)%(Extension)"/>
30+
<None Include="runtimes/linux-arm64/native/**" Pack="true" PackagePath="runtimes/linux-arm64/native" Link="runtimes/linux-arm64/native/%(Filename)%(Extension)"/>
31+
<None Include="runtimes/osx-arm64/native/**" Pack="true" PackagePath="runtimes/osx-arm64/native" Link="runtimes/osx-arm64/native/%(Filename)%(Extension)"/>
32+
<None Include="runtimes/osx-x64/native/**" Pack="true" PackagePath="runtimes/osx-x64/native" Link="runtimes/osx-x64/native/%(Filename)%(Extension)"/>
33+
<None Include="runtimes/win-x64/native/**" Pack="true" PackagePath="runtimes/win-x64/native" Link="runtimes/win-x64/native/%(Filename)%(Extension)"/>
3434
</ItemGroup>
3535

3636
</Project>

0 commit comments

Comments
 (0)