diff --git a/package.json b/package.json index 72cb10e..50ac2e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "light-process", - "version": "0.7.0", + "version": "0.8.0", "description": "Lightweight DAG workflow engine for orchestrating code in Docker containers via light-run.", "main": "dist/index.js", "exports": { diff --git a/src/instrumentation.ts b/src/instrumentation.ts index 64d0fe0..62ebb41 100644 --- a/src/instrumentation.ts +++ b/src/instrumentation.ts @@ -27,7 +27,7 @@ import { ConsoleSpanExporter, SimpleSpanProcessor, type SpanExporter } from '@op import { ATTR_SERVICE_NAME, ATTR_SERVICE_VERSION } from '@opentelemetry/semantic-conventions'; const SERVICE_NAME = process.env.OTEL_SERVICE_NAME ?? 'light-process'; -const SERVICE_VERSION = process.env.LP_VERSION ?? '0.7.0'; +const SERVICE_VERSION = process.env.LP_VERSION ?? '0.8.0'; const debugMode = process.env.LP_OTEL_DEBUG === '1'; const otlpEndpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT; diff --git a/src/telemetry.ts b/src/telemetry.ts index 55d4a1f..ef848f3 100644 --- a/src/telemetry.ts +++ b/src/telemetry.ts @@ -10,7 +10,7 @@ import { type Attributes, context, type Span, SpanStatusCode, type Tracer, trace */ const TRACER_NAME = 'light-process'; -const TRACER_VERSION = '0.7.0'; +const TRACER_VERSION = '0.8.0'; export const tracer: Tracer = trace.getTracer(TRACER_NAME, TRACER_VERSION);