@mservices-tech/scripts 4.0.0 → 4.0.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.
package/CHANGELOG.md CHANGED
@@ -1,24 +1,32 @@
1
1
 
2
+ ### 4.0.1 (2026-03-27)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ - **scripts:** Convert changelog bullet style from * to -
8
+ - **scripts:** Updated @mservices-tech/scripts and @mservices-tech/utils
9
+
2
10
  ## 4.0.0 (2026-03-24)
3
11
 
4
12
 
5
13
  ### ⚠ BREAKING CHANGES
6
14
 
7
- * **scripts:** Refactor removeGitHashesFromMarkdownFile to bash
15
+ - **scripts:** Refactor removeGitHashesFromMarkdownFile to bash
8
16
 
9
17
  ### Features
10
18
 
11
- * **scripts:** Enable to pass versionrc path
19
+ - **scripts:** Enable to pass versionrc path
12
20
 
13
21
 
14
22
  ### Bug Fixes
15
23
 
16
- * **scripts:** Fix utils path in remove_git_hashes_from_markdown_file
17
- * **scripts:** Refactor removeGitHashesFromMarkdownFile to bash
18
- * **scripts:** Remove self dependency
19
- * **scripts:** Use @mservices-tech/eslint-config-node and @mservices-tech/prettier-config
20
- * **scripts:** Use @mservices-tech/utils package
21
- * **scripts:** Use proper scope in bump_version
24
+ - **scripts:** Fix utils path in remove_git_hashes_from_markdown_file
25
+ - **scripts:** Refactor removeGitHashesFromMarkdownFile to bash
26
+ - **scripts:** Remove self dependency
27
+ - **scripts:** Use @mservices-tech/eslint-config-node and @mservices-tech/prettier-config
28
+ - **scripts:** Use @mservices-tech/utils package
29
+ - **scripts:** Use proper scope in bump_version
22
30
 
23
31
  ### 3.2.2 (2026-03-19)
24
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mservices-tech/scripts",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "license": "MIT",
5
5
  "packageManager": "yarn@4.4.1",
6
6
  "bin": {
@@ -33,6 +33,9 @@ function main() {
33
33
 
34
34
  # Remove version compare links: [1.2.3](https://...) → 1.2.3
35
35
  perl -i -pe 's/\[(\d+\.\d+\.\d+[^\]]*)\]\(https?:\/\/[\w#.\/?=-]+\)/$1/g' "$markdown_file"
36
+
37
+ # Convert '*' list bullets to '-' (standard-version generates '*', but we use '-')
38
+ perl -i -pe 's/^\* /- /' "$markdown_file"
36
39
  }
37
40
 
38
41
  main "$@"