From b732ee65ebb927746de894233b4bced45db80365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Duch=C3=AAne?= Date: Fri, 20 Dec 2024 13:23:57 +0100 Subject: [PATCH] chore: release 1.0.6 --- Cargo.lock | 2 +- Cargo.toml | 2 +- npm/app/package.json | 54 +++++++++++++++++++------------------- package.json | 62 ++++++++++++++++++++++---------------------- src/main.rs | 2 +- 5 files changed, 61 insertions(+), 61 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b8f1380..08aa612 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "rustnpmtest" -version = "1.0.5" +version = "1.0.6" diff --git a/Cargo.toml b/Cargo.toml index b53691d..b341ba0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustnpmtest" -version = "1.0.5" +version = "1.0.6" edition = "2021" license = "MIT" authors = ["vincentdchn"] diff --git a/npm/app/package.json b/npm/app/package.json index c9c6a50..5e22cc3 100644 --- a/npm/app/package.json +++ b/npm/app/package.json @@ -1,29 +1,29 @@ { - "name": "rustnpmtest", - "version": "1.0.5", - "description": "Simple CLI to print a message", - "bin": { - "rustnpmtest": "./index.js" - }, - "keywords": [ - "cli", - "rust" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/vincentdchn/rust-npm" - }, - "bugs": { - "url": "https://github.com/vincentdchn/rust-npm" - }, - "homepage": "https://github.com/vincentdchn/rust-npm#readme", - "license": "MIT", - "optionalDependencies": { - "rustnpmtest-linux-x64": "1.0.5", - "rustnpmtest-linux-arm64": "1.0.5", - "rustnpmtest-darwin-x64": "1.0.5", - "rustnpmtest-darwin-arm64": "1.0.5", - "rustnpmtest-windows-x64": "1.0.5", - "rustnpmtest-windows-arm64": "1.0.5" - } + "name": "rustnpmtest", + "version": "1.0.6", + "description": "Simple CLI to print a message", + "bin": { + "rustnpmtest": "./index.js" + }, + "keywords": [ + "cli", + "rust" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/vincentdchn/rust-npm" + }, + "bugs": { + "url": "https://github.com/vincentdchn/rust-npm" + }, + "homepage": "https://github.com/vincentdchn/rust-npm#readme", + "license": "MIT", + "optionalDependencies": { + "rustnpmtest-linux-x64": "1.0.5", + "rustnpmtest-linux-arm64": "1.0.5", + "rustnpmtest-darwin-x64": "1.0.5", + "rustnpmtest-darwin-arm64": "1.0.5", + "rustnpmtest-windows-x64": "1.0.5", + "rustnpmtest-windows-arm64": "1.0.5" + } } diff --git a/package.json b/package.json index cc2a78d..53c9c38 100644 --- a/package.json +++ b/package.json @@ -1,33 +1,33 @@ { - "name": "rustnpmtest", - "version": "1.0.5", - "description": "Simple CLI to print a message", - "keywords": [ - "cli", - "rust" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/vincentdchn/rust-npm.git" - }, - "bugs": { - "url": "https://github.com/vincentdchn/rust-npm/issues" - }, - "homepage": "https://github.com/vincentdchn/rust-npm#readme", - "license": "MIT", - "scripts": { - "action": "ncc build action/index.ts -o action", - "bump": "node ./scripts/bump-version.js" - }, - "dependencies": { - "@actions/core": "^1.10.1", - "@actions/exec": "^1.1.1", - "@actions/github": "^6.0.0", - "@actions/tool-cache": "^2.0.1" - }, - "devDependencies": { - "@types/node": "^20.0.0", - "@vercel/ncc": "^0.38.1", - "typescript": "^5.0.0" - } + "name": "rustnpmtest", + "version": "1.0.6", + "description": "Simple CLI to print a message", + "keywords": [ + "cli", + "rust" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/vincentdchn/rust-npm.git" + }, + "bugs": { + "url": "https://github.com/vincentdchn/rust-npm/issues" + }, + "homepage": "https://github.com/vincentdchn/rust-npm#readme", + "license": "MIT", + "scripts": { + "action": "ncc build action/index.ts -o action", + "bump": "node ./scripts/bump-version.js" + }, + "dependencies": { + "@actions/core": "^1.10.1", + "@actions/exec": "^1.1.1", + "@actions/github": "^6.0.0", + "@actions/tool-cache": "^2.0.1" + }, + "devDependencies": { + "@types/node": "^20.0.0", + "@vercel/ncc": "^0.38.1", + "typescript": "^5.0.0" + } } diff --git a/src/main.rs b/src/main.rs index e7a11a9..32fd024 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,3 @@ fn main() { - println!("Hello, world!"); + println!("Hello, world! Again"); }