Skip to content

Commit

Permalink
release: v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassabreu committed Sep 24, 2024
1 parent 2437b0b commit 28e92c5
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 50 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.0] - 2024-09-24

### Fixed
- fix link on README about PAT

### Changed
- update dependencies for security reasons

### Thanks

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)

## [0.13.0] - 2024-03-20

### Added
Expand Down
82 changes: 34 additions & 48 deletions bin/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import resolve from "@rollup/plugin-node-resolve";
import json from "@rollup/plugin-json";
import externals from "rollup-plugin-node-externals";
import typescript from "rollup-plugin-typescript2";
import fs from "fs";

const pkg = require("./package.json");
const pkg = JSON.parse(fs.readFileSync("package.json"));

export default {
input: pkg.source,
Expand Down

0 comments on commit 28e92c5

Please sign in to comment.