Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit cdd2d1c

Browse files
committed
chore: release v0.3.4
- Update version to 0.3.4 - Includes improved README with installation options - Added more npm keywords (zkp, dapp, web3, smart-contracts, typescript) - Fixed CI/CD to use Node.js 22 - Updated .npmignore to exclude GitHub workflows and test files - Removed strikethrough from coming soon templates
1 parent a49bd67 commit cdd2d1c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-mn-app",
3-
"version": "0.3.3",
3+
"version": "0.3.4",
44
"description": "Create Midnight Network applications with zero configuration",
55
"main": "dist/index.js",
66
"bin": {

src/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ErrorHandler.checkNodeVersion(22);
2323
program
2424
.name("create-mn-app")
2525
.description("Create a new Midnight Network application")
26-
.version("0.3.3")
26+
.version("0.3.4")
2727
.argument("[project-directory]", "Directory name for your project")
2828
.option(
2929
"-t, --template <name>",
@@ -37,7 +37,7 @@ program
3737
.option("--skip-git", "Skip git repository initialization")
3838
.option("--verbose", "Show detailed output")
3939
.action(async (projectDirectory, options) => {
40-
console.log(chalk.bold.cyan("\ncreate-mn-app") + chalk.gray(" v0.3.3\n"));
40+
console.log(chalk.bold.cyan("\ncreate-mn-app") + chalk.gray(" v0.3.4\n"));
4141

4242
try {
4343
await createApp(projectDirectory, options);

0 commit comments

Comments
 (0)