fork-version 1.7.6 → 1.8.0

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,5 +1,37 @@
1
1
  # Fork Version
2
2
 
3
+ ## 1.8.0 (2025-08-11)
4
+
5
+
6
+ ### Features
7
+
8
+ * added bicep file support ([#87](https://github.com/eglavin/fork-version/issues/87)) ([d6d44ac](https://github.com/eglavin/fork-version/commit/d6d44ac3b64a59d39555c2b886f320a348b80efa))
9
+
10
+
11
+ ## 1.7.9 (2024-11-26)
12
+
13
+
14
+ ### Refactor
15
+
16
+ * dont sign if --sign not passed into cli arguments ([#84](https://github.com/eglavin/fork-version/issues/84)) ([8a9e6f4](https://github.com/eglavin/fork-version/commit/8a9e6f49ef1715fe0c2b0f5adaa5e9a032683727))
17
+
18
+
19
+ ## 1.7.8 (2024-11-13)
20
+
21
+
22
+ ### Refactor
23
+
24
+ * split user-config to allow easier testing ([#82](https://github.com/eglavin/fork-version/issues/82)) ([dfe01e0](https://github.com/eglavin/fork-version/commit/dfe01e058df1006995c82743ddb0c55831477c87))
25
+
26
+
27
+ ## 1.7.7 (2024-11-10)
28
+
29
+
30
+ ### Refactor
31
+
32
+ * clean up test setup functions ([#81](https://github.com/eglavin/fork-version/issues/81)) ([2525687](https://github.com/eglavin/fork-version/commit/252568781e8678a065063f8a1a02b6a1681078ad))
33
+
34
+
3
35
  ## 1.7.6 (2024-11-09)
4
36
 
5
37
 
package/README.md CHANGED
@@ -410,6 +410,7 @@ Adds a suffix to the end of the release message, useful to add a `[skip ci]` mes
410
410
  - [Yaml Package](#yaml-package)
411
411
  - [Plain Text](#plain-text)
412
412
  - [MS Build](#ms-build)
413
+ - [ARM Bicep](#arm-bicep)
413
414
 
414
415
  #### Json Package
415
416
 
@@ -459,6 +460,15 @@ A MS build project is an xml file with with a `Version` property under the `Proj
459
460
 
460
461
  Fork-Version currently supports reading and updating the following file extensions: `.csproj` `.dbproj` `.esproj` `.fsproj` `.props` `.vbproj` `.vcxproj`
461
462
 
463
+ #### ARM Bicep
464
+
465
+ An ARM bicep file with metadata and variable called contentVersion.
466
+
467
+ ```bicep
468
+ metadata contentVersion = '1.2.3.4'
469
+ var contentVersion string = '1.2.3.4'
470
+ ```
471
+
462
472
  #### Custom File Updater's
463
473
 
464
474
  `TODO` [add support for custom file readers and writers through config #5](https://github.com/eglavin/fork-version/issues/5)