projectops 4.1.2 → 4.1.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.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  > 이슈 등록부터 커밋, 보고서, 배포까지. 개발자는 코드만 작성하세요.
8
8
 
9
9
  <!-- AUTO-VERSION-SECTION: DO NOT EDIT MANUALLY -->
10
- ## 최신 버전 : v4.1.1 (2026-07-09)
10
+ ## 최신 버전 : v4.1.2 (2026-07-09)
11
11
 
12
12
  [전체 버전 기록 보기](CHANGELOG.md)
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projectops",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "ProjectOps — 완전 자동화 GitHub 프로젝트 관리 템플릿 통합 CLI (구 SUH-DEVOPS-TEMPLATE 마법사)",
5
5
  "keywords": [
6
6
  "devops",
@@ -5,9 +5,14 @@ import { chmodSync } from "node:fs";
5
5
  import { PATHS } from "../paths.js";
6
6
  import { exists, copyFileSync, copyDirSync } from "../fsutil.js";
7
7
 
8
- // version_manager.sh, changelog_manager.py 2개만 무조건 덮어쓰기 + chmod +x.
8
+ // 버전관리/릴리스노트 스크립트만 무조건 덮어쓰기 + chmod +x.
9
+ // version_manager는 .sh(위임 shim) + .py(실 로직) 한 쌍 — 둘 다 복사해야 동작 (#448).
9
10
  export function copyScripts(tempDir, targetRoot = ".") {
10
- const scripts = ["version_manager.sh", "changelog_manager.py"];
11
+ const scripts = [
12
+ "version_manager.sh", "version_manager.py",
13
+ "changelog_manager.py",
14
+ "truncate_release_notes.sh", "truncate_release_notes.py",
15
+ ];
11
16
  let copied = 0;
12
17
  for (const s of scripts) {
13
18
  const src = join(tempDir, PATHS.scriptsDir, s);