Skip to content
This repository was archived by the owner on Nov 10, 2022. It is now read-only.

Commit 493daa1

Browse files
authored
chore: release proposal 0.18.0 (#13)
1 parent 92c1700 commit 493daa1

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

.github/workflows/lint.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
- name: Lint changelog file
1717
uses: docker://avtodev/markdown-lint:v1
1818
with:
19-
rules: "/lint/rules/changelog.js"
2019
config: "/lint/config/changelog.yml"
2120
args: "./CHANGELOG.md"
2221

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,28 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## Unreleased
5+
## v0.18.0
6+
7+
### :boom: Breaking Change
8+
9+
* [#9](https://github.com/open-telemetry/opentelemetry-js-api/pull/9) chore: refactor diag logger ([@dyladan](https://github.com/dyladan))
10+
11+
### :rocket: Enhancement
12+
13+
* [#10](https://github.com/open-telemetry/opentelemetry-js-api/pull/10) Use semver to determine API compatibility ([@dyladan](https://github.com/dyladan))
14+
15+
### :house: Internal
16+
17+
* [#12](https://github.com/open-telemetry/opentelemetry-js-api/pull/12) chore: don't disable rule eqeqeq ([@Flarna](https://github.com/Flarna))
18+
* [#8](https://github.com/open-telemetry/opentelemetry-js-api/pull/8) chore: remove nycrc in favor of tsconfig reporting ([@dyladan](https://github.com/dyladan))
19+
* [#3](https://github.com/open-telemetry/opentelemetry-js-api/pull/3) chore: add test workflow ([@dyladan](https://github.com/dyladan))
20+
* [#4](https://github.com/open-telemetry/opentelemetry-js-api/pull/4) chore: remove package lock ([@dyladan](https://github.com/dyladan))
21+
* [#2](https://github.com/open-telemetry/opentelemetry-js-api/pull/2) chore: add lint workflow ([@dyladan](https://github.com/dyladan))
22+
23+
### Committers: 2
24+
25+
* Daniel Dyla ([@dyladan](https://github.com/dyladan))
26+
* Gerhard Stöbich ([@Flarna](https://github.com/Flarna))
627

728
## v0.17.0
829

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@opentelemetry/api",
3-
"version": "0.17.0",
3+
"version": "0.18.0",
44
"description": "Public API for OpenTelemetry",
55
"main": "build/src/index.js",
66
"types": "build/src/index.d.ts",
77
"browser": {
88
"./src/platform/index.ts": "./src/platform/browser/index.ts",
99
"./build/src/platform/index.js": "./build/src/platform/browser/index.js"
1010
},
11-
"repository": "open-telemetry/opentelemetry-js-api",
11+
"repository": "https://github.com/open-telemetry/opentelemetry-js-api.git",
1212
"scripts": {
1313
"build": "npm run compile",
1414
"clean": "tsc --build --clean",
@@ -68,6 +68,7 @@
6868
"karma-mocha": "2.0.1",
6969
"karma-spec-reporter": "0.0.32",
7070
"karma-webpack": "4.0.2",
71+
"lerna-changelog": "^1.0.1",
7172
"linkinator": "2.13.5",
7273
"mocha": "7.2.0",
7374
"nyc": "15.1.0",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
*/
1616

1717
// this is autogenerated file, see scripts/version-update.js
18-
export const VERSION = '0.17.0';
18+
export const VERSION = '0.18.0';

0 commit comments

Comments
 (0)