Skip to content

Commit 307678c

Browse files
committed
rc
1 parent 177a978 commit 307678c

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,11 @@ jobs:
4141
id: version
4242
run: |
4343
VERSION=$(grep -oPm1 "(?<=<Version>)[^<]+" Directory.Build.props)
44-
AGENT_FRAMEWORK_SUFFIX=$(grep -oPm1 "(?<=<AgentFrameworkPackageVersionSuffix>)[^<]+" Directory.Build.props)
4544
if [ -z "$VERSION" ]; then
4645
echo "Failed to resolve package version from Directory.Build.props"
4746
exit 1
4847
fi
49-
if [ -z "$AGENT_FRAMEWORK_SUFFIX" ]; then
50-
echo "Failed to resolve Agent Framework package suffix from Directory.Build.props"
51-
exit 1
52-
fi
53-
AGENT_FRAMEWORK_VERSION="$VERSION-$AGENT_FRAMEWORK_SUFFIX"
48+
AGENT_FRAMEWORK_VERSION="$VERSION-rc4"
5449
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
5550
echo "agent_framework_version=$AGENT_FRAMEWORK_VERSION" >> "$GITHUB_OUTPUT"
5651
echo "Version from Directory.Build.props: $VERSION"

CodexSharpSDK.Extensions.AgentFramework/CodexSharpSDK.Extensions.AgentFramework.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
<PropertyGroup>
33
<Description>.NET Microsoft Agent Framework adapter for CodexSharpSDK, providing AIAgent registration helpers.</Description>
44
<PackageDescription>$(Description)</PackageDescription>
5+
<PackageVersion>$(Version)-rc4</PackageVersion>
56
<PackageId>ManagedCode.CodexSharpSDK.Extensions.AgentFramework</PackageId>
67
<RootNamespace>ManagedCode.CodexSharpSDK.Extensions.AgentFramework</RootNamespace>
78
<AssemblyName>ManagedCode.CodexSharpSDK.Extensions.AgentFramework</AssemblyName>
8-
<PackageVersion>$(Version)-$(AgentFrameworkPackageVersionSuffix)</PackageVersion>
9-
<Version>$(PackageVersion)</Version>
109
<PackageTags>codex;openai;sdk;ai;agent;cli;microsoft-agent-framework;aiagent</PackageTags>
1110
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1211
<NoWarn>$(NoWarn);CS1591</NoWarn>

Directory.Build.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
<PublishRepositoryUrl>true</PublishRepositoryUrl>
3333
<EmbedUntrackedSources>true</EmbedUntrackedSources>
3434
<EnablePackageValidation>true</EnablePackageValidation>
35-
<AgentFrameworkPackageVersionSuffix>rc4</AgentFrameworkPackageVersionSuffix>
3635
<Version>1.1.0</Version>
3736
<PackageVersion>$(Version)</PackageVersion>
3837
</PropertyGroup>

docs/Features/release-and-sync-automation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Keep package quality and upstream Codex CLI parity automatically verified throug
4040
- Release workflow must read package version from `Directory.Build.props`.
4141
- Release workflow must validate semantic version format before packaging.
4242
- Release workflow must fail if the produced core `.nupkg` version does not match `Directory.Build.props`.
43-
- Release workflow must also pack `ManagedCode.CodexSharpSDK.Extensions.AgentFramework` and use the project-specific prerelease suffix from `Directory.Build.props`.
43+
- Release workflow must also pack `ManagedCode.CodexSharpSDK.Extensions.AgentFramework` with its project-specific prerelease package version.
4444
- Release workflow must use generated GitHub release notes.
4545
- Release workflow must create/push git tag `v<version>` before publishing GitHub release.
4646
- Codex CLI watch runs daily and opens issue when upstream `openai/codex` changed since pinned submodule SHA.

0 commit comments

Comments
 (0)