code-foundry 0.23.0 → 0.23.1

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.
@@ -163,7 +163,7 @@ if [ -f "$config_path" ]; then
163
163
  fi
164
164
 
165
165
  case "$package_manager" in
166
- auto|bun|pnpm|yarn|npm) ;;
166
+ auto|none|bun|pnpm|yarn|npm) ;;
167
167
  *) printf 'Unsupported package manager: %s\n' "$package_manager" >&2; exit 2 ;;
168
168
  esac
169
169
  case "$release_type" in
@@ -235,7 +235,7 @@ case "$runtime_repository" in
235
235
  *) printf 'Runtime repository must be OWNER/REPO: %s\n' "$runtime_repository" >&2; exit 2 ;;
236
236
  esac
237
237
  case "$package_manager" in
238
- auto|bun|pnpm|yarn|npm) ;;
238
+ auto|none|bun|pnpm|yarn|npm) ;;
239
239
  *) printf 'Unsupported package manager: %s\n' "$package_manager" >&2; exit 2 ;;
240
240
  esac
241
241
  validate_list language "$languages" "$valid_languages"
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.23.1](https://github.com/0xPlayerOne/code-foundry/compare/v0.23.0...v0.23.1) (2026-07-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * support repositories without package managers ([a126945](https://github.com/0xPlayerOne/code-foundry/commit/a126945d259875763ce89ddb3c0dbc182b74bb76))
9
+
3
10
  ## [0.23.0](https://github.com/0xPlayerOne/code-foundry/compare/v0.22.2...v0.23.0) (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.23.0",
3
+ "version": "0.23.1",
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",