code-foundry 0.22.1 → 0.22.2

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.
@@ -263,6 +263,11 @@ license="$(config_value license 2>/dev/null || true)"
263
263
  printf 'turbo_remote: %s\n' "$turbo_remote"
264
264
  } > .github/code-foundry.yml
265
265
 
266
+ if [ "$config_path" = .github/template.yml ] && [ -f .github/template.yml ]; then
267
+ rm .github/template.yml
268
+ printf '%s\n' 'Migrated .github/template.yml to .github/code-foundry.yml.'
269
+ fi
270
+
266
271
  if [ "$bootstrap" = false ]; then
267
272
  printf '%s\n' 'Bootstrap skipped.'
268
273
  exit 0
@@ -702,6 +702,10 @@ if [ "$mode" = "apply" ]; then
702
702
  printf 'license_file: %s\n' "$license_file"
703
703
  fi
704
704
  } > .github/code-foundry.yml
705
+ if [ "$config_path" = .github/template.yml ] && [ -f .github/template.yml ]; then
706
+ rm .github/template.yml
707
+ printf '%s\n' 'Migrated .github/template.yml to .github/code-foundry.yml.'
708
+ fi
705
709
  fi
706
710
 
707
711
  if [ "$prune" = true ]; then
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.22.2](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.1...v0.22.2) (2026-07-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * remove legacy config after migration ([839a4bd](https://github.com/0xPlayerOne/code-foundry/commit/839a4bd7d818633f1aef201b4a2b3292218563f4))
9
+
3
10
  ## [0.22.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.0...v0.22.1) (2026-07-28)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-foundry",
3
- "version": "0.22.1",
3
+ "version": "0.22.2",
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",