@meza/adr-tools 1.0.3 → 1.0.4

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.
package/.releaserc.json CHANGED
@@ -18,7 +18,7 @@
18
18
  [
19
19
  "@semantic-release/changelog",
20
20
  {
21
- "changelogFile": "docs/CHANGELOG.md"
21
+ "changelogFile": "CHANGELOG.md"
22
22
  }
23
23
  ],
24
24
  "@semantic-release/npm",
@@ -35,12 +35,6 @@
35
35
  }
36
36
  ]
37
37
  }
38
- ],
39
- [
40
- "@semantic-release/git",
41
- {
42
- "assets": ["CHANGELOG.md"]
43
- }
44
38
  ]
45
39
  ]
46
40
  }
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ ## [1.0.4](https://github.com/meza/adr-tools/compare/v1.0.3...v1.0.4) (2022-06-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * changelog release ([5ca3a37](https://github.com/meza/adr-tools/commit/5ca3a37d65414156816284a27f27be5d717006fa))
7
+ * fixed git release ([448daab](https://github.com/meza/adr-tools/commit/448daabd67bb0756467ebc02801b1208759b6dff))
@@ -1,2 +1,2 @@
1
- export declare const LIB_VERSION = "1.0.3";
1
+ export declare const LIB_VERSION = "1.0.4";
2
2
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LIB_VERSION = void 0;
4
- exports.LIB_VERSION = '1.0.3';
4
+ exports.LIB_VERSION = '1.0.4';
5
5
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meza/adr-tools",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "main": "dist/index.js",
5
5
  "bin": {
6
6
  "adr": "dist/index.js"
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
- export const LIB_VERSION = '1.0.3';
1
+ export const LIB_VERSION = '1.0.4';
2
2
 
package/docs/CHANGELOG.md DELETED
@@ -1,6 +0,0 @@
1
- ## [1.0.3](https://github.com/meza/adr-tools/compare/v1.0.2...v1.0.3) (2022-06-27)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * adding the changelog to the repo ([3e643d8](https://github.com/meza/adr-tools/commit/3e643d8ccdad3e93a5e797d4ce35a0b729acde06))