Skip to content

Commit 4eb51f9

Browse files
Prepared release v0.9.32 (#320)
1 parent e11211d commit 4eb51f9

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

app/MindWork AI Studio/Components/Changelog.Logs.cs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public readonly record struct Log(int Build, string Display, string Filename)
1313

1414
public static readonly Log[] LOGS =
1515
[
16+
new (207, "v0.9.32, build 207 (2025-03-08 20:15 UTC)", "v0.9.32.md"),
1617
new (206, "v0.9.31, build 206 (2025-03-03 15:33 UTC)", "v0.9.31.md"),
1718
new (205, "v0.9.30, build 205 (2025-02-24 19:55 UTC)", "v0.9.30.md"),
1819
new (204, "v0.9.29, build 204 (2025-02-24 13:48 UTC)", "v0.9.29.md"),

app/MindWork AI Studio/Settings/DataModel/DataSourceERI_V1.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public DataSourceERI_V1()
5252
public ERIVersion Version { get; init; } = ERIVersion.V1;
5353

5454
/// <inheritdoc />
55-
public string SelectedRetrievalId { get; init; }
55+
public string SelectedRetrievalId { get; init; } = string.Empty;
5656

5757
/// <inheritdoc />
5858
public async Task<IReadOnlyList<IRetrievalContext>> RetrieveDataAsync(IContent lastPrompt, ChatThread thread, CancellationToken token = default)

app/MindWork AI Studio/wwwroot/changelog/v0.9.32.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.9.32, build 207 (2025-03-xx xx:xx UTC)
1+
# v0.9.32, build 207 (2025-03-08 20:15 UTC)
22
- Added the "Community & Code" section to the about page. It includes links to the GitHub repositories and the project website.
33
- Added the retrieval process section for ERI data sources in the configuration dialog. Like all RAG functions, this is hidden behind the RAG feature flag in the app settings due to its preview status.
44
- Improved data security by preventing the use of cloud LLMs after confidential data has been retrieved previously.

app/SourceCodeRules/SourceCodeRules/SourceCodeRules.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>
22-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" />
23-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.13.0" />
22+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
23+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.12.0" />
2424
</ItemGroup>
2525

2626
</Project>

metadata.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
0.9.31
2-
2025-03-03 15:33:03 UTC
3-
206
1+
0.9.32
2+
2025-03-08 20:15:02 UTC
3+
207
44
8.0.113 (commit 8f216348dc)
55
8.0.13 (commit eba546b0f0)
66
1.85.0 (commit 4d91de4e4)
77
7.16.0
88
1.8.1
9-
2e84f10a977, release
9+
5a726577ca2, release

runtime/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mindwork-ai-studio"
3-
version = "0.9.31"
3+
version = "0.9.32"
44
edition = "2021"
55
description = "MindWork AI Studio"
66
authors = ["Thorsten Sommer"]

runtime/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"package": {
88
"productName": "MindWork AI Studio",
9-
"version": "0.9.31"
9+
"version": "0.9.32"
1010
},
1111
"tauri": {
1212
"allowlist": {

0 commit comments

Comments
 (0)