code-foundry 0.34.2 → 0.34.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -286,7 +286,11 @@ jobs:
286
286
  reconcile:
287
287
  name: Release / Reconcile
288
288
  needs: release
289
- if: needs.release.result == 'success'
289
+ # A normal promotion push can successfully run Release Please without
290
+ # creating a release. Reconciliation is only meaningful after a release
291
+ # commit/tag is actually created; otherwise the promotion's source changes
292
+ # are incorrectly rejected as non-metadata commits.
293
+ if: needs.release.result == 'success' && needs.release.outputs.release_created == 'true'
290
294
  runs-on: ${{ inputs.runner }}
291
295
  timeout-minutes: 15
292
296
  permissions:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.34.3](https://github.com/0xPlayerOne/code-foundry/compare/v0.34.2...v0.34.3) (2026-08-02)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **release:** reconcile only after creating a release ([#317](https://github.com/0xPlayerOne/code-foundry/issues/317)) ([#318](https://github.com/0xPlayerOne/code-foundry/issues/318)) ([6f2b00c](https://github.com/0xPlayerOne/code-foundry/commit/6f2b00c5f3fe27e56b448671902bf6f5e33cca1f))
9
+
3
10
  ## [0.34.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.34.1...v0.34.2) (2026-08-01)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.34.2",
3
+ "version": "0.34.3",
4
4
  "description": "A fast, language-aware repository factory for agent-ready workflows, testing, security, and release automation.",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-or-later",