@meza/adr-tools 1.0.2 → 1.0.3

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
@@ -28,7 +28,6 @@
28
28
  "assets": [
29
29
  {
30
30
  "path": [
31
- "dist/**",
32
31
  "CHANGELOG.md"
33
32
  ],
34
33
  "name": "adr-tools-${nextRelease.gitTag}.zip",
@@ -36,6 +35,12 @@
36
35
  }
37
36
  ]
38
37
  }
38
+ ],
39
+ [
40
+ "@semantic-release/git",
41
+ {
42
+ "assets": ["CHANGELOG.md"]
43
+ }
39
44
  ]
40
45
  ]
41
46
  }
@@ -1,2 +1,2 @@
1
- export declare const LIB_VERSION = "1.0.2";
1
+ export declare const LIB_VERSION = "1.0.3";
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.2';
4
+ exports.LIB_VERSION = '1.0.3';
5
5
  //# sourceMappingURL=version.js.map
package/docs/CHANGELOG.md CHANGED
@@ -1,7 +1,6 @@
1
- ## [1.0.2](https://github.com/meza/adr-tools/compare/v1.0.1...v1.0.2) (2022-06-27)
1
+ ## [1.0.3](https://github.com/meza/adr-tools/compare/v1.0.2...v1.0.3) (2022-06-27)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * fixed versioning ([7a3b3b5](https://github.com/meza/adr-tools/commit/7a3b3b57424c1413a07f7fd34d0feb2d815c1192))
7
- * fixing the release flow ([1520e9f](https://github.com/meza/adr-tools/commit/1520e9f138e041ee2eaa59a86acc779cc5179751))
6
+ * adding the changelog to the repo ([3e643d8](https://github.com/meza/adr-tools/commit/3e643d8ccdad3e93a5e797d4ce35a0b729acde06))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meza/adr-tools",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
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.2';
1
+ export const LIB_VERSION = '1.0.3';
2
2