Skip to content

Commit

Permalink
release(project): should release v0.2.0 #10
Browse files Browse the repository at this point in the history
  • Loading branch information
hoatle committed Dec 7, 2020
1 parent 8c04064 commit bae865f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log


## [v0.2.0][] (2020-12-07)

- Features:
+ should export tracing.getTracingExporterOptions #8

Details: https://github.com/teracyhq-incubator/logging-tracing/milestone/2?closed=1


## [v0.1.1][] (2020-12-07)

- Bug Fixes:
Expand All @@ -16,3 +25,4 @@ Details: https://github.com/teracyhq-incubator/logging-tracing/milestone/1?close

[v0.1.0]: https://github.com/teracyhq-incubator/logging-tracing/milestone/1?closed=1
[v0.1.1]: https://github.com/teracyhq-incubator/logging-tracing/milestone/3?closed=1
[v0.2.0]: https://github.com/teracyhq-incubator/logging-tracing/milestone/2?closed=1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $ npm install @teracyhq-incubator/logging-tracing
- Create tracing.js file with the following similar content:

```js
const { initTracing } = require('@teracyhq-incubator/logging-tracing');
const { initTracing, getTracingExporterOptions } = require('@teracyhq-incubator/logging-tracing');
// for google cloud tracing
const { CloudPropagator } = require('@google-cloud/opentelemetry-cloud-trace-propagator');

Expand All @@ -38,7 +38,7 @@ let exporterOpts = {}, registerOpts = {};

switch(exporterSpec) {
case "ZIPKIN":
exporterOpts = Object.assign(exporterOpts, tracing.getExporterOptions(), {
exporterOpts = Object.assign(exporterOpts, getTracingExporterOptions(), {
serviceName: "nodejs-app"
});
break;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@teracyhq-incubator/logging-tracing",
"version": "0.2.0-SNAPSHOT",
"version": "0.2.0",
"description": "logging and tracing libraries for cloud native apps",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit bae865f

Please sign in to comment.