Skip to content

Commit

Permalink
release version 3.1.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Francis Kafieh committed Sep 27, 2024
1 parent 9d41b3e commit 94dfa06
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
38 changes: 19 additions & 19 deletions bumpVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,25 +57,25 @@ if (values.alpha) {
console.log(manifest.version);

// create and push git commit and tag
// (async () => {
// Bun.spawnSync(["git", "add", "."]);
(async () => {
Bun.spawnSync(["git", "add", "."]);

// const commitCmd = [
// "git",
// "commit",
// "-m",
// `release version ${manifest.version}`,
// ];
// Bun.spawnSync(commitCmd, { stdio: ["inherit", "inherit", "inherit"] });
const commitCmd = [
"git",
"commit",
"-m",
`release version ${manifest.version}`,
];
Bun.spawnSync(commitCmd, { stdio: ["inherit", "inherit", "inherit"] });

// Bun.spawnSync(["git", "tag", manifest.version]);
Bun.spawnSync(["git", "tag", manifest.version]);

// Bun.spawnSync([
// "git",
// "push",
// "--atomic",
// "origin",
// "master",
// manifest.version,
// ]);
// })();
Bun.spawnSync([
"git",
"push",
"--atomic",
"origin",
"master",
manifest.version,
]);
})();
18 changes: 9 additions & 9 deletions manifest-beta.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"id": "obsidian-list-modified",
"name": "List Modified",
"version": "3.0.0",
"minAppVersion": "1.5.7",
"description": "The advanced and adaptive changelog. Links all modified files meeting certain criteria to a timed (daily, weekly, monthly) note.",
"author": "Francis Kafieh",
"authorUrl": "https://github.com/franciskafieh",
"isDesktopOnly": false
}
"id": "obsidian-list-modified",
"name": "List Modified",
"version": "3.1.0",
"minAppVersion": "1.5.7",
"description": "The advanced and adaptive changelog. Links all modified files meeting certain criteria to a timed (daily, weekly, monthly) note.",
"author": "Francis Kafieh",
"authorUrl": "https://github.com/franciskafieh",
"isDesktopOnly": false
}

0 comments on commit 94dfa06

Please sign in to comment.