Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit f9a851c

Browse files
authored
chore(multiple): 0.0.14 release proposal (#571)
1 parent eff8921 commit f9a851c

File tree

29 files changed

+119
-235
lines changed

29 files changed

+119
-235
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "0.0.13"
6+
"version": "0.0.14"
77
}

packages/opencensus-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencensus/core",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"description": "OpenCensus is a toolkit for collecting application performance and behavior data.",
55
"main": "build/src/index.js",
66
"types": "build/src/index.d.ts",
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@opencensus/example-automatic-tracing",
33
"description": "These example show hot to trace a simple HTTP server and export the trace state.",
4-
"version": "0.0.13",
4+
"version": "0.0.14",
55
"private": true,
66
"main": "zipkin.js",
77
"dependencies": {
8-
"@opencensus/exporter-instana": "^0.0.13",
9-
"@opencensus/exporter-stackdriver": "^0.0.13",
10-
"@opencensus/exporter-zipkin": "^0.0.13",
11-
"@opencensus/nodejs": "^0.0.13"
8+
"@opencensus/exporter-instana": "^0.0.14",
9+
"@opencensus/exporter-stackdriver": "^0.0.14",
10+
"@opencensus/exporter-zipkin": "^0.0.14",
11+
"@opencensus/nodejs": "^0.0.14"
1212
}
1313
}

packages/opencensus-exporter-instana/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencensus/exporter-instana",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"description": "OpenCensus Instana Exporter allows the user to send collected traces with OpenCensus Node.js to Instana.",
55
"main": "build/src/index.js",
66
"types": "build/src/index.d.ts",
@@ -63,6 +63,6 @@
6363
"typescript": "~3.2.0"
6464
},
6565
"dependencies": {
66-
"@opencensus/core": "^0.0.13"
66+
"@opencensus/core": "^0.0.14"
6767
}
6868
}

packages/opencensus-exporter-jaeger/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencensus/exporter-jaeger",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"description": "OpenCensus Exporter Jeager allows user to send collected traces to Jeager",
55
"main": "build/src/index.js",
66
"types": "build/src/index.d.ts",
@@ -63,7 +63,7 @@
6363
"typescript": "~3.2.0"
6464
},
6565
"dependencies": {
66-
"@opencensus/core": "^0.0.13",
66+
"@opencensus/core": "^0.0.14",
6767
"jaeger-client": "~3.15.0"
6868
}
6969
}

packages/opencensus-exporter-object/package-lock.json

Lines changed: 0 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
11
{
22
"name": "@opencensus/exporter-object",
3-
"version": "0.0.13",
3+
"version": "0.0.14",
44
"description": "OpenCensus Object Exporter allows the user to collect and access traces with OpenCensus Node.js.",
55
"main": "build/src/index.js",
66
"types": "build/src/index.d.ts",
77
"repository": "census-instrumentation/opencensus-node",
88
"scripts": {
9-
"test": "nyc ts-mocha -p ./tsconfig.json test/**/*.ts",
10-
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
11-
"clean": "rimraf build/*",
12-
"check": "gts check",
13-
"compile": "tsc -p .",
14-
"fix": "gts fix",
15-
"prepare": "npm run compile",
16-
"posttest": "npm run check"
9+
"test": "nyc ts-mocha -p ./tsconfig.json test/**/*.ts",
10+
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
11+
"clean": "rimraf build/*",
12+
"check": "gts check",
13+
"compile": "tsc -p .",
14+
"fix": "gts fix",
15+
"prepare": "npm run compile",
16+
"posttest": "npm run check"
1717
},
1818
"keywords": [
19-
"opencensus",
20-
"nodejs",
21-
"tracing",
22-
"profiling"
19+
"opencensus",
20+
"nodejs",
21+
"tracing",
22+
"profiling"
2323
],
2424
"author": "Google Inc.",
2525
"license": "Apache-2.0",
2626
"engines": {
27-
"node": ">=8"
27+
"node": ">=8"
2828
},
2929
"files": [
30-
"build/src/**/*.js",
31-
"build/src/**/*.d.ts",
32-
"doc",
33-
"CHANGELOG.md",
34-
"LICENSE",
35-
"README.md"
30+
"build/src/**/*.js",
31+
"build/src/**/*.d.ts",
32+
"doc",
33+
"CHANGELOG.md",
34+
"LICENSE",
35+
"README.md"
3636
],
3737
"nyc": {
38-
"extension": [
39-
".ts",
40-
".tsx"
41-
],
42-
"exclude": [
43-
"**/*.d.ts",
44-
"build/**/**/*.js"
45-
],
46-
"all": true
38+
"extension": [
39+
".ts",
40+
".tsx"
41+
],
42+
"exclude": [
43+
"**/*.d.ts",
44+
"build/**/**/*.js"
45+
],
46+
"all": true
4747
},
4848
"publishConfig": {
49-
"access": "public"
49+
"access": "public"
5050
},
5151
"devDependencies": {
52-
"@types/mocha": "^5.2.5",
53-
"@types/nock": "^9.1.3",
54-
"@types/node": "^10.12.12",
55-
"codecov": "^3.4.0",
56-
"gts": "^0.9.0",
57-
"mocha": "^6.1.0",
58-
"nyc": "14.1.1",
59-
"ts-mocha": "^6.0.0",
60-
"ts-node": "^8.0.0",
61-
"typescript": "~3.2.0"
52+
"@types/mocha": "^5.2.5",
53+
"@types/nock": "^9.1.3",
54+
"@types/node": "^10.12.12",
55+
"codecov": "^3.4.0",
56+
"gts": "^0.9.0",
57+
"mocha": "^6.1.0",
58+
"nyc": "14.1.1",
59+
"ts-mocha": "^6.0.0",
60+
"ts-node": "^8.0.0",
61+
"typescript": "~3.2.0"
6262
},
6363
"dependencies": {
64-
"@opencensus/core": "^0.0.13"
64+
"@opencensus/core": "^0.0.14"
6565
}
6666
}

0 commit comments

Comments
 (0)