Skip to content

Commit c3fd500

Browse files
committed
fix version display output
1 parent 7a3ed33 commit c3fd500

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

NpgsqlRestClient/NpgsqlRestClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PublishAot>true</PublishAot>
1111
<PublishTrimmed>true</PublishTrimmed>
1212
<TrimMode>full</TrimMode>
13-
<Version>3.2.3</Version>
13+
<Version>3.2.4</Version>
1414
</PropertyGroup>
1515

1616
<ItemGroup>

NpgsqlRestClient/Program.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@
7070
("System.Text.Json", System.Reflection.Assembly.GetAssembly(typeof(System.Text.Json.JsonCommentHandling))?.GetName().Version?.ToString() ?? "-"),
7171
("StackExchange.Redis", System.Reflection.Assembly.GetAssembly(typeof(StackExchange.Redis.ConnectionMultiplexer))?.GetName().Version?.ToString() ?? "-"),
7272
("Microsoft.Extensions.Caching.Hybrid", System.Reflection.Assembly.GetAssembly(typeof(Microsoft.Extensions.Caching.Hybrid.HybridCache))?.GetName().Version?.ToString() ?? "-"),
73+
("Microsoft.Extensions.Caching.StackExchangeRedis", System.Reflection.Assembly.GetAssembly(typeof(Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache))?.GetName().Version?.ToString() ?? "-"),
74+
("Microsoft.AspNetCore.Authentication.JwtBearer", System.Reflection.Assembly.GetAssembly(typeof(Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerOptions))?.GetName().Version?.ToString() ?? "-"),
7375
(" ", " "),
7476
("CurrentDirectory", Directory.GetCurrentDirectory()),
7577
("BaseDirectory", AppContext.BaseDirectory)

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ Added support for encrypting data protection keys at rest using X.509 certificat
6666

6767
- Fixed error parsing in generated TypeScript/JavaScript code to skip `response.json()` when the response has no body (e.g., 404 responses). The generated code now checks `response.headers.get("content-length") !== "0"` before attempting to parse the error response.
6868

69+
### NpgsqlRestClient
70+
71+
- Added `Microsoft.Extensions.Caching.StackExchangeRedis` and `Microsoft.AspNetCore.Authentication.JwtBearer` packages to the version display output (`--version` / `-v`).
72+
6973
## Version [3.2.3](https://github.com/NpgsqlRest/NpgsqlRest/tree/3.2.3) (2025-12-30)
7074

7175
[Full Changelog](https://github.com/NpgsqlRest/NpgsqlRest/compare/3.2.2...3.2.3)

plugins/NpgsqlRest.TsClient/NpgsqlRest.TsClient.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2727
<PackageReadmeFile>README.MD</PackageReadmeFile>
2828
<DocumentationFile>bin\$(Configuration)\$(AssemblyName).xml</DocumentationFile>
29-
<Version>1.33.1</Version>
30-
<AssemblyVersion>1.33.1</AssemblyVersion>
31-
<FileVersion>1.33.1</FileVersion>
32-
<PackageVersion>1.33.1</PackageVersion>
29+
<Version>1.33.2</Version>
30+
<AssemblyVersion>1.33.2</AssemblyVersion>
31+
<FileVersion>1.33.2</FileVersion>
32+
<PackageVersion>1.33.2</PackageVersion>
3333
<LangVersion>14</LangVersion>
3434
</PropertyGroup>
3535

0 commit comments

Comments
 (0)