From 493daa12235a3e2d4d6d263104b2bde4b59282b1 Mon Sep 17 00:00:00 2001 From: Daniel Dyla Date: Fri, 26 Feb 2021 15:52:40 -0500 Subject: [PATCH] chore: release proposal 0.18.0 (#13) --- .github/workflows/lint.yaml | 1 - CHANGELOG.md | 23 ++++++++++++++++++++++- package.json | 5 +++-- src/version.ts | 2 +- 4 files changed, 26 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 8dab618d..c27b95ef 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -16,7 +16,6 @@ jobs: - name: Lint changelog file uses: docker://avtodev/markdown-lint:v1 with: - rules: "/lint/rules/changelog.js" config: "/lint/config/changelog.yml" args: "./CHANGELOG.md" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e3f25b0..65b785a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,28 @@ All notable changes to this project will be documented in this file. -## Unreleased +## v0.18.0 + +### :boom: Breaking Change + +* [#9](https://github.com/open-telemetry/opentelemetry-js-api/pull/9) chore: refactor diag logger ([@dyladan](https://github.com/dyladan)) + +### :rocket: Enhancement + +* [#10](https://github.com/open-telemetry/opentelemetry-js-api/pull/10) Use semver to determine API compatibility ([@dyladan](https://github.com/dyladan)) + +### :house: Internal + +* [#12](https://github.com/open-telemetry/opentelemetry-js-api/pull/12) chore: don't disable rule eqeqeq ([@Flarna](https://github.com/Flarna)) +* [#8](https://github.com/open-telemetry/opentelemetry-js-api/pull/8) chore: remove nycrc in favor of tsconfig reporting ([@dyladan](https://github.com/dyladan)) +* [#3](https://github.com/open-telemetry/opentelemetry-js-api/pull/3) chore: add test workflow ([@dyladan](https://github.com/dyladan)) +* [#4](https://github.com/open-telemetry/opentelemetry-js-api/pull/4) chore: remove package lock ([@dyladan](https://github.com/dyladan)) +* [#2](https://github.com/open-telemetry/opentelemetry-js-api/pull/2) chore: add lint workflow ([@dyladan](https://github.com/dyladan)) + +### Committers: 2 + +* Daniel Dyla ([@dyladan](https://github.com/dyladan)) +* Gerhard Stöbich ([@Flarna](https://github.com/Flarna)) ## v0.17.0 diff --git a/package.json b/package.json index d0e1500a..facd86d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@opentelemetry/api", - "version": "0.17.0", + "version": "0.18.0", "description": "Public API for OpenTelemetry", "main": "build/src/index.js", "types": "build/src/index.d.ts", @@ -8,7 +8,7 @@ "./src/platform/index.ts": "./src/platform/browser/index.ts", "./build/src/platform/index.js": "./build/src/platform/browser/index.js" }, - "repository": "open-telemetry/opentelemetry-js-api", + "repository": "https://github.com/open-telemetry/opentelemetry-js-api.git", "scripts": { "build": "npm run compile", "clean": "tsc --build --clean", @@ -68,6 +68,7 @@ "karma-mocha": "2.0.1", "karma-spec-reporter": "0.0.32", "karma-webpack": "4.0.2", + "lerna-changelog": "^1.0.1", "linkinator": "2.13.5", "mocha": "7.2.0", "nyc": "15.1.0", diff --git a/src/version.ts b/src/version.ts index 2544b647..6fdb996c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -15,4 +15,4 @@ */ // this is autogenerated file, see scripts/version-update.js -export const VERSION = '0.17.0'; +export const VERSION = '0.18.0';