Skip to content

Commit

Permalink
chore: release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentdchn committed Dec 20, 2024
1 parent 72b4142 commit b732ee6
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 61 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustnpmtest"
version = "1.0.5"
version = "1.0.6"
edition = "2021"
license = "MIT"
authors = ["vincentdchn"]
Expand Down
54 changes: 27 additions & 27 deletions npm/app/package.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
62 changes: 31 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
fn main() {
println!("Hello, world!");
println!("Hello, world! Again");
}

0 comments on commit b732ee6

Please sign in to comment.