Skip to content

Commit 28e92c5

Browse files
committed
release: v0.14.0
1 parent 2437b0b commit 28e92c5

File tree

4 files changed

+49
-50
lines changed

4 files changed

+49
-50
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.14.0] - 2024-09-24
10+
11+
### Fixed
12+
- fix link on README about PAT
13+
14+
### Changed
15+
- update dependencies for security reasons
16+
17+
### Thanks
18+
19+
Thank you to [@tom-reinders](https://github.com/tom-reinders) for improving the project on PR [#55](https://github.com/lucassabreu/comment-coverage-clover/pull/55)
20+
921
## [0.13.0] - 2024-03-20
1022

1123
### Added

bin/index.js

Lines changed: 34 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rollup.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ import resolve from "@rollup/plugin-node-resolve";
33
import json from "@rollup/plugin-json";
44
import externals from "rollup-plugin-node-externals";
55
import typescript from "rollup-plugin-typescript2";
6+
import fs from "fs";
67

7-
const pkg = require("./package.json");
8+
const pkg = JSON.parse(fs.readFileSync("package.json"));
89

910
export default {
1011
input: pkg.source,

0 commit comments

Comments
 (0)