bunset 1.0.0 → 1.0.2

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 +45 -0
  2. package/package.json +12 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,45 @@
1
+ # Changelog
2
+
3
+ ## 1.0.2
4
+
5
+ ### Bug Fixes
6
+
7
+ - link back to github
8
+
9
+ ## 1.0.1
10
+
11
+ ### Bug Fixes
12
+
13
+ - missing README
14
+
15
+ ## 1.0.0
16
+
17
+ ### Features
18
+
19
+ - align with Conventional Commits 1.0.0 breaking change detection
20
+
21
+ ## 0.0.3
22
+
23
+ ### Features
24
+
25
+ - automatically determine tag-prefix based on tag history
26
+ - add --debug option for detailed logging during execution
27
+
28
+ ## 0.0.2
29
+
30
+ ### Features
31
+
32
+ - add --tag-prefix option and default --commit/--tag to true
33
+ - enhance changelog generation for monorepos with per-package filtering
34
+ - add --dry-run option
35
+ - git tag is default
36
+ - add scopes, e.g. feaure(api): description
37
+ - user configurable sections and section ordering
38
+ - add new sections of changelog: refactor, style, docs, chore, ops, build, perf
39
+ - add local toml file for settings
40
+
41
+ ## 0.0.1
42
+
43
+ ### Features
44
+
45
+ - 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.2",
4
4
  "module": "src/index.ts",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,8 +16,19 @@
16
16
  "bun": "^1.3"
17
17
  },
18
18
  "files": [
19
+ "README.md",
20
+ "LICENSE",
21
+ "CHANGELOG.md",
19
22
  "src"
20
23
  ],
24
+ "homepage": "https://github.com/sroussey/bunset#readme",
25
+ "bugs": {
26
+ "url": "https://github.com/sroussey/bunset/issues"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/sroussey/bunset.git"
31
+ },
21
32
  "publishConfig": {
22
33
  "access": "public"
23
34
  },