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

Commit cb723d7

Browse files
authored
Merge pull request #55 from codeoverflow-org:update-version-0.2.0
Update versions to 0.2.0
2 parents 8ae9b3f + 2b18e2d commit cb723d7

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

docs/contribute/create_sample.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ Create a folder in `samples` named after the sample and add a `package.json` and
99
{
1010
"name": "<the sample name>",
1111
"private": true,
12-
"version": "0.1.0",
12+
"version": "0.2.0",
1313
"nodecg": {
1414
"compatibleRange": "^1.1.1",
1515
"bundleDependencies": {
16-
"nodecg-io-<the service name>": "^0.1.0"
16+
"nodecg-io-<the service name>": "^0.2.0"
1717
}
1818
},
1919
"scripts": {
@@ -23,8 +23,8 @@ Create a folder in `samples` named after the sample and add a `package.json` and
2323
},
2424
"license": "MIT",
2525
"dependencies": {
26-
"nodecg-io-<the service name>": "^0.1.0",
27-
"nodecg-io-core": "^0.1.0",
26+
"nodecg-io-<the service name>": "^0.2.0",
27+
"nodecg-io-core": "^0.2.0",
2828
"@types/node": "^14.14.13",
2929
"nodecg": "^1.7.4",
3030
"typescript": "^4.1.3"

docs/contribute/create_service.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Put the following into it:
2323
```json
2424
{
2525
"name": "nodecg-io-<your-service-name>",
26-
"version": "0.1.0",
26+
"version": "0.2.0",
2727
"description": "<Short description what is possible with your service.>",
28-
"homepage": "https://nodecg.io/samples/<your-service-name>",
28+
"homepage": "https://nodecg.io/RELEASE/samples/<your-service-name>",
2929
"author": {
3030
"name": "<Your name>",
3131
"url": "<Your github profile url>"
@@ -45,17 +45,17 @@ Put the following into it:
4545
"nodecg": {
4646
"compatibleRange": "^1.1.1",
4747
"bundleDependencies": {
48-
"nodecg-io-core": "^0.1.0"
48+
"nodecg-io-core": "^0.2.0"
4949
}
5050
},
5151
"license": "MIT",
5252
"devDependencies": {
53-
"@types/node": "^14.14.13",
54-
"nodecg": "^1.7.4",
55-
"typescript": "^4.1.3"
53+
"@types/node": "^14.14.33",
54+
"nodecg": "^1.8.1",
55+
"typescript": "^4.2.3"
5656
},
5757
"dependencies": {
58-
"nodecg-io-core": "^0.1.0",
58+
"nodecg-io-core": "^0.2.0",
5959
"<the package you found in step 1>": "<the packages version you want to use>"
6060
}
6161
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "",
55
"private": true,
66
"nodecg": {

0 commit comments

Comments
 (0)