chore(release): v1.7.0

This commit is contained in:
2023-12-16 15:28:15 +02:00
parent f4a7a0d2bc
commit d1099c1e69
2 changed files with 12 additions and 1 deletions

View File

@@ -9,6 +9,9 @@ const newPackageFile = packageFile.replace(
fs.writeFileSync("./package.json", newPackageFile);
const indexFile = fs.readFileSync("./src/index.ts").toString();
const newIndexFile = indexFile.replace(/version\("[0-9]+\.[0-9]+\.[0-9]+"\)/);
const newIndexFile = indexFile.replace(
/version\("[0-9]+\.[0-9]+\.[0-9]+"\)/,
`version("${__NEW_VERSION__}")`
);
fs.writeFileSync("./src/index.ts", newIndexFile);

View File

@@ -2,6 +2,14 @@
Generation of this changelog is based on commits
## v1.7.0
### Features
- [f4a7a0d2b] - **commands**: add release script customizability (#12)
- [c80d76325] - **config**: add auto-signing options
- [498c830e3] - change tag message schema (#11)
## v1.6.0
### Features