@aneuhold/core-ts-lib 2.3.1 → 2.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## 🔖 [2.3.2] (2025-07-04)
9
+
10
+ ### ✅ Added
11
+
12
+ - New `hasChangesComparedToMain` method in `FileSystemService` to check if directory has changes compared to main branch
13
+ - New `getGitDiffCommand` private method in `FileSystemService` to determine appropriate git diff command
14
+
15
+ ### 🏗️ Changed
16
+
17
+ - Updated `PackageServiceUtils.bumpVersionAndInitializeChangelog` to check for changes before version bumping
18
+ - Package version bump now skips if no changes are detected compared to main branch
19
+
8
20
  ## 🔖 [2.2.14] (2025-06-26)
9
21
 
10
22
  ### 🏗️ Changed
@@ -47,6 +59,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
47
59
 
48
60
  <!-- Link References -->
49
61
 
62
+ [2.3.2]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.2.14...core-ts-lib-v2.3.2
50
63
  [2.2.14]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.2.13...core-ts-lib-v2.2.14
51
64
  [2.2.13]: https://github.com/aneuhold/ts-libs/compare/core-ts-lib-v2.2.12...core-ts-lib-v2.2.13
52
65
  [2.2.12]: https://github.com/aneuhold/ts-libs/releases/tag/core-ts-lib-v2.2.12
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@aneuhold/core-ts-lib",
3
3
  "author": "Anton G. Neuhold Jr.",
4
4
  "license": "MIT",
5
- "version": "2.3.1",
5
+ "version": "2.3.2",
6
6
  "description": "A core library for all of my TypeScript projects",
7
7
  "packageManager": "pnpm@10.12.1",
8
8
  "type": "module",
@@ -56,4 +56,4 @@
56
56
  "typescript": "~5.8.3",
57
57
  "vitest": "^3.2.4"
58
58
  }
59
- }
59
+ }