Skip to content

Commit 0b71adb

Browse files
committed
v1.0.0-rc.1 - upgraded to MAF "1.0.0-rc2"
1 parent 6fb934f commit 0b71adb

9 files changed

Lines changed: 31 additions & 16 deletions

File tree

src/AgentNet.Durable/AgentNet.Durable.fsproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!-- NuGet Package Metadata -->
1010
<PropertyGroup>
1111
<PackageId>AgentNet.Durable</PackageId>
12-
<Version>1.0.0-alpha.4</Version>
12+
<Version>1.0.0-rc.1</Version>
1313
<Authors>Jordan Marr</Authors>
1414
<Description>Durable workflow compilation for AgentNet. Compiles F# workflow definitions to Microsoft Azure Durable Functions (MAF) format for production deployment.</Description>
1515
<PackageTags>fsharp;ai;agents;durable;azure-functions;workflows;maf</PackageTags>
@@ -37,8 +37,12 @@
3737
</Target>
3838

3939
<ItemGroup>
40-
<PackageReference Include="Microsoft.DurableTask.Abstractions" Version="1.20.1" />
41-
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc1" />
40+
<PackageReference Include="Microsoft.DurableTask.Abstractions" Version="1.21.0" />
41+
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc2" />
42+
</ItemGroup>
43+
44+
<ItemGroup>
45+
<PackageReference Update="FSharp.Core" Version="10.0.102" />
4246
</ItemGroup>
4347

4448
</Project>

src/AgentNet.Interop/AgentNet.Interop.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc1" />
13-
<PackageReference Include="Microsoft.DurableTask.Abstractions" Version="1.19.1" />
12+
<PackageReference Include="Microsoft.Agents.AI" Version="1.0.0-rc2" />
13+
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc2" />
14+
<PackageReference Include="Microsoft.DurableTask.Abstractions" Version="1.21.0" />
1415
</ItemGroup>
1516

1617
</Project>

src/AgentNet/AgentNet.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!-- NuGet Package Metadata -->
1010
<PropertyGroup>
1111
<PackageId>AgentNet</PackageId>
12-
<Version>1.0.0-alpha.4</Version>
12+
<Version>1.0.0-rc.1</Version>
1313
<Authors>Jordan Marr</Authors>
1414
<Description>A beautiful F# library for building AI agents on .NET. Wraps Microsoft Agent Framework with idiomatic F# APIs using quotation-based tools, pipeline-style agents, and computation expression workflows.</Description>
1515
<PackageTags>fsharp;ai;agents;llm;microsoft-agent-framework;workflows</PackageTags>
@@ -40,8 +40,8 @@
4040
</ItemGroup>
4141

4242
<ItemGroup>
43-
<PackageReference Include="Microsoft.Agents.AI" Version="1.0.0-rc1" />
44-
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc1" />
43+
<PackageReference Include="Microsoft.Agents.AI" Version="1.0.0-rc2" />
44+
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc2" />
4545
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="10.3.0" />
4646
</ItemGroup>
4747

src/Samples.DurableFunctions/Samples.DurableFunctions.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<ItemGroup>
2020
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.51.0" />
21-
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.13.1" />
21+
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.14.1" />
2222
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.3.0" />
2323
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="2.1.0" />
2424
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.7" />

src/Samples.DurableFunctions/host.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"version": "2.0",
3+
4+
"extensions": {
5+
"durableTask": {
6+
"hubName": "TestHubName",
7+
"storageProvider": {
8+
"connectionStringName": "AzureWebJobsStorage"
9+
}
10+
}
11+
},
12+
313
"logging": {
414
"applicationInsights": {
515
"samplingSettings": {

src/Samples.DurableFunctions/local.settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
"Values": {
44
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
55
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated"
6-
},
7-
"DurableTask": { "HubName": "TestHubName" }
6+
}
87
}

src/Samples.DurableFunctions/test-requests.http

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Content-Type: application/json; charset=utf-8
2323
### Replace {instanceId} with the actual instance ID from step 1.
2424
### Status will be "Running" while waiting for approval.
2525

26-
@instanceId = e54fdcd5b22d4110a4784d92c129fd4e
26+
@instanceId = c5c94c73ef084b8a9493619535c0a2ea
2727

2828
GET {{baseUrl}}/trade/{{instanceId}}/status
2929

src/StockAdvisorCS/StockAdvisorCS.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<ItemGroup>
1111
<PackageReference Include="DotNetEnv" Version="3.1.1" />
1212
<PackageReference Include="Anthropic" Version="12.2.0" />
13-
<PackageReference Include="Microsoft.Agents.AI" Version="1.0.0-preview.260108.1" />
14-
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.0.0-preview.260108.1" />
15-
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-preview.260108.1" />
13+
<PackageReference Include="Microsoft.Agents.AI" Version="1.0.0-rc2" />
14+
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.0.0-rc2" />
15+
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc2" />
1616
</ItemGroup>
1717

1818
</Project>

src/StockAdvisorFS/StockAdvisorFS.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
<ItemGroup>
2222
<PackageReference Include="DotNetEnv" Version="3.1.1" />
2323
<PackageReference Include="Anthropic" Version="12.2.0" />
24-
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.0.0-preview.260108.1" />
24+
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.0.0-rc2" />
25+
<PackageReference Include="Microsoft.Agents.AI.Workflows" Version="1.0.0-rc2" />
2526
</ItemGroup>
2627

2728
</Project>

0 commit comments

Comments
 (0)