@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 +6 -1
- package/dist/types/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/docs/CHANGELOG.md +2 -3
- package/package.json +1 -1
- package/src/version.ts +1 -1
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
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "1.0.
|
|
1
|
+
export declare const LIB_VERSION = "1.0.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
## [1.0.
|
|
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
|
-
*
|
|
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
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const LIB_VERSION = '1.0.
|
|
1
|
+
export const LIB_VERSION = '1.0.3';
|
|
2
2
|
|