Skip to content

Commit 3a64e9a

Browse files
committed
feat: version bump 0.8.10
1 parent d707975 commit 3a64e9a

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

dist/index.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
2-
* universal-version-bump v0.8.8
2+
* universal-version-bump v0.8.10
33
* Universal Version Bump
44
*
55
* Description: A GitHub Action to automatically bump versions across any app (Node, Python, PHP, Docker, etc.)
66
* Author: Taj <[email protected]>
77
* Homepage: https://github.com/taj54/universal-version-bump#readme
88
* License: MIT
9-
* Generated on Mon, 25 Aug 2025 09:57:11 GMT
9+
* Generated on Mon, 25 Aug 2025 10:27:34 GMT
1010
*/
1111
require('./sourcemap-register.js');/******/ (() => { // webpackBootstrap
1212
/******/ var __webpack_modules__ = ({
@@ -33547,7 +33547,9 @@ class ManifestParser {
3354733547
this.fileHandler.writeFile(manifestPath, JSON.stringify(data, null, 2));
3354833548
}
3354933549
else if (type === 'regex' && options.regexReplace) {
33550-
content = content.replace(options.regexReplace, newVersion);
33550+
content = content.replace(options.regexReplace, (_match, prefix, _oldVersion, suffix) => {
33551+
return `${prefix}${newVersion}${suffix}`;
33552+
});
3355133553
this.fileHandler.writeFile(manifestPath, content);
3355233554
}
3355333555
}

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "universal-version-bump",
33
"displayName": "Universal Version Bump",
4-
"version": "0.8.8",
4+
"version": "0.8.10",
55
"description": "A GitHub Action to automatically bump versions across any app (Node, Python, PHP, Docker, etc.)",
66
"main": "dist/index.js",
77
"scripts": {

0 commit comments

Comments
 (0)