Skip to content

Commit b732ee6

Browse files
committed
chore: release 1.0.6
1 parent 72b4142 commit b732ee6

File tree

5 files changed

+61
-61
lines changed

5 files changed

+61
-61
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustnpmtest"
3-
version = "1.0.5"
3+
version = "1.0.6"
44
edition = "2021"
55
license = "MIT"
66
authors = ["vincentdchn"]

npm/app/package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
{
2-
"name": "rustnpmtest",
3-
"version": "1.0.5",
4-
"description": "Simple CLI to print a message",
5-
"bin": {
6-
"rustnpmtest": "./index.js"
7-
},
8-
"keywords": [
9-
"cli",
10-
"rust"
11-
],
12-
"repository": {
13-
"type": "git",
14-
"url": "git+https://github.com/vincentdchn/rust-npm"
15-
},
16-
"bugs": {
17-
"url": "https://github.com/vincentdchn/rust-npm"
18-
},
19-
"homepage": "https://github.com/vincentdchn/rust-npm#readme",
20-
"license": "MIT",
21-
"optionalDependencies": {
22-
"rustnpmtest-linux-x64": "1.0.5",
23-
"rustnpmtest-linux-arm64": "1.0.5",
24-
"rustnpmtest-darwin-x64": "1.0.5",
25-
"rustnpmtest-darwin-arm64": "1.0.5",
26-
"rustnpmtest-windows-x64": "1.0.5",
27-
"rustnpmtest-windows-arm64": "1.0.5"
28-
}
2+
"name": "rustnpmtest",
3+
"version": "1.0.6",
4+
"description": "Simple CLI to print a message",
5+
"bin": {
6+
"rustnpmtest": "./index.js"
7+
},
8+
"keywords": [
9+
"cli",
10+
"rust"
11+
],
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/vincentdchn/rust-npm"
15+
},
16+
"bugs": {
17+
"url": "https://github.com/vincentdchn/rust-npm"
18+
},
19+
"homepage": "https://github.com/vincentdchn/rust-npm#readme",
20+
"license": "MIT",
21+
"optionalDependencies": {
22+
"rustnpmtest-linux-x64": "1.0.5",
23+
"rustnpmtest-linux-arm64": "1.0.5",
24+
"rustnpmtest-darwin-x64": "1.0.5",
25+
"rustnpmtest-darwin-arm64": "1.0.5",
26+
"rustnpmtest-windows-x64": "1.0.5",
27+
"rustnpmtest-windows-arm64": "1.0.5"
28+
}
2929
}

package.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
{
2-
"name": "rustnpmtest",
3-
"version": "1.0.5",
4-
"description": "Simple CLI to print a message",
5-
"keywords": [
6-
"cli",
7-
"rust"
8-
],
9-
"repository": {
10-
"type": "git",
11-
"url": "git+https://github.com/vincentdchn/rust-npm.git"
12-
},
13-
"bugs": {
14-
"url": "https://github.com/vincentdchn/rust-npm/issues"
15-
},
16-
"homepage": "https://github.com/vincentdchn/rust-npm#readme",
17-
"license": "MIT",
18-
"scripts": {
19-
"action": "ncc build action/index.ts -o action",
20-
"bump": "node ./scripts/bump-version.js"
21-
},
22-
"dependencies": {
23-
"@actions/core": "^1.10.1",
24-
"@actions/exec": "^1.1.1",
25-
"@actions/github": "^6.0.0",
26-
"@actions/tool-cache": "^2.0.1"
27-
},
28-
"devDependencies": {
29-
"@types/node": "^20.0.0",
30-
"@vercel/ncc": "^0.38.1",
31-
"typescript": "^5.0.0"
32-
}
2+
"name": "rustnpmtest",
3+
"version": "1.0.6",
4+
"description": "Simple CLI to print a message",
5+
"keywords": [
6+
"cli",
7+
"rust"
8+
],
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/vincentdchn/rust-npm.git"
12+
},
13+
"bugs": {
14+
"url": "https://github.com/vincentdchn/rust-npm/issues"
15+
},
16+
"homepage": "https://github.com/vincentdchn/rust-npm#readme",
17+
"license": "MIT",
18+
"scripts": {
19+
"action": "ncc build action/index.ts -o action",
20+
"bump": "node ./scripts/bump-version.js"
21+
},
22+
"dependencies": {
23+
"@actions/core": "^1.10.1",
24+
"@actions/exec": "^1.1.1",
25+
"@actions/github": "^6.0.0",
26+
"@actions/tool-cache": "^2.0.1"
27+
},
28+
"devDependencies": {
29+
"@types/node": "^20.0.0",
30+
"@vercel/ncc": "^0.38.1",
31+
"typescript": "^5.0.0"
32+
}
3333
}

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fn main() {
2-
println!("Hello, world!");
2+
println!("Hello, world! Again");
33
}

0 commit comments

Comments
 (0)