Skip to content

Commit 6db32b1

Browse files
committed
Release 3.1.0
1 parent 6b4a13a commit 6db32b1

4 files changed

Lines changed: 35 additions & 3 deletions

File tree

.release-it.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { Config } from 'release-it'
22

33
export default {
44
git: {
5+
requireCleanWorkingDir: false,
56
commit: true,
67
tag: true,
78
push: true,
@@ -18,7 +19,19 @@ export default {
1819
header: '# Changelog',
1920
preset: {
2021
name: 'conventionalcommits',
22+
types: [
23+
{ type: 'feat', section: '✨ New Features' },
24+
{ type: 'perf', section: '🚀 Performance' },
25+
{ type: 'fix', section: '🐛 Bug Fixes' },
26+
{ type: 'ci', section: '⚙️ CI' },
27+
{ type: 'build', hidden: true },
28+
{ type: 'docs', section: '📚 Documentation' },
29+
{ type: 'chore', hidden: true },
30+
{ type: 'refactor', hidden: true },
31+
{ type: 'test', hidden: true },
32+
],
2133
},
34+
header: '# Changelog',
2235
},
2336
},
2437
} satisfies Config

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# Changelog
2+
3+
## [3.1.0](https://github.com/codepunkt/rollup-license-plugin/compare/3.0.2...3.4.0) (2025-11-13)
4+
5+
### ✨ New Features
6+
7+
* add ability to disable standard output file ([4aed941](https://github.com/codepunkt/rollup-license-plugin/commit/4aed9417701c1f3d30d9e4b688038da3db975dfe))
8+
* narrow return type of `createViteLicensePlugin` ([330fdc6](https://github.com/codepunkt/rollup-license-plugin/commit/330fdc6582b022cbf26ac33cc57abdcbe6eabeeb))
9+
* allow overriding licenses without specifying versions ([260a814](https://github.com/codepunkt/rollup-license-plugin/commit/260a814321ef56b92842b7f3963b24a90b7ac13f))
10+
* allow overriding licenses using semver ranges ([ba700d8](https://github.com/codepunkt/rollup-license-plugin/commit/ba700d8d546d3692f0bca1ed43382e1a9e22b167))
11+
12+
### 🐛 Bug Fixes
13+
14+
* version parsing for scoped packages ([eccb6f8](https://github.com/codepunkt/rollup-license-plugin/commit/eccb6f89fd4a1c79628aeef3304fe0fbf2128011))
15+
16+
### ⚙️ CI
17+
18+
* adjust node versions used for testing ([14db846](https://github.com/codepunkt/rollup-license-plugin/commit/14db846e6d63468ee6d08ffbaab74b232684549d))
19+
120
# 3.0.2
221

322
- Change default branch used to replenish licenses from to `main` (thanks to [@mzedel](https://github.com/mzedel))

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup-license-plugin",
3-
"version": "3.0.2",
3+
"version": "3.1.0",
44
"type": "module",
55
"packageManager": "[email protected]",
66
"description": "Extracts OSS license information of the npm packages in your rollup or vite output",

0 commit comments

Comments
 (0)