bunset 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/package.json +4 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,39 @@
1
+ # Changelog
2
+
3
+ ## 1.0.1
4
+
5
+ ### Bug Fixes
6
+
7
+ - missing README
8
+
9
+ ## 1.0.0
10
+
11
+ ### Features
12
+
13
+ - align with Conventional Commits 1.0.0 breaking change detection
14
+
15
+ ## 0.0.3
16
+
17
+ ### Features
18
+
19
+ - automatically determine tag-prefix based on tag history
20
+ - add --debug option for detailed logging during execution
21
+
22
+ ## 0.0.2
23
+
24
+ ### Features
25
+
26
+ - add --tag-prefix option and default --commit/--tag to true
27
+ - enhance changelog generation for monorepos with per-package filtering
28
+ - add --dry-run option
29
+ - git tag is default
30
+ - add scopes, e.g. feaure(api): description
31
+ - user configurable sections and section ordering
32
+ - add new sections of changelog: refactor, style, docs, chore, ops, build, perf
33
+ - add local toml file for settings
34
+
35
+ ## 0.0.1
36
+
37
+ ### Features
38
+
39
+ - Initial code for changeset
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunset",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "module": "src/index.ts",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,6 +16,9 @@
16
16
  "bun": "^1.3"
17
17
  },
18
18
  "files": [
19
+ "README.md",
20
+ "LICENSE",
21
+ "CHANGELOG.md",
19
22
  "src"
20
23
  ],
21
24
  "publishConfig": {