agent-banner-library 0.0.2 → 0.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/CHANGELOG.md +14 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### 0.0.3 (2026-02-06)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- add agent banner library setup and tooling ([560ade7](https://github.com/auronforge/agent-banner-library/commit/560ade74292e492fbd8fb2e2d9c9ed128966937e))
|
|
10
|
+
- add automated release flow with tag validation and PR to main ([586001b](https://github.com/auronforge/agent-banner-library/commit/586001b89019a239aa345a898ef1fd0ad87caf70))
|
|
11
|
+
- add feature branch workflow with auto PR creation ([2e4bdfc](https://github.com/auronforge/agent-banner-library/commit/2e4bdfccd1202870b86131255879c2d7d91d3b22))
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- add develop-merged workflow to create PR to main after merge ([af62811](https://github.com/auronforge/agent-banner-library/commit/af62811f986d57ee3d328b0422fac3c0ed39f436))
|
|
16
|
+
- remove incorrect cache-dependency-path and working-directory from workflows ([da969b1](https://github.com/auronforge/agent-banner-library/commit/da969b1350eb81a788d2f704fd683913c6f6c8ed))
|
|
17
|
+
- resolve TypeScript build config module/moduleResolution conflicts ([1ba55b5](https://github.com/auronforge/agent-banner-library/commit/1ba55b5486e167cf102fb638d18fd2df6e41cc89))
|
|
18
|
+
|
|
5
19
|
### 0.0.2 (2026-02-06)
|
|
6
20
|
|
|
7
21
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-banner-library",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Standardized startup banner logger for REST API agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"api"
|
|
12
12
|
],
|
|
13
13
|
"author": "Auronforge",
|
|
14
|
-
"license": "
|
|
14
|
+
"license": "Apache-2.0",
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
17
|
"url": "https://github.com/auronforge/agent-banner-library.git",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"dev": "npx tsx scripts/dev.ts",
|
|
58
58
|
"test": "jest",
|
|
59
59
|
"test:coverage": "jest --coverage",
|
|
60
|
-
"release": "standard-version",
|
|
60
|
+
"release": "standard-version --skip.tag",
|
|
61
61
|
"prepublishOnly": "npm run build",
|
|
62
62
|
"prepare": "husky install"
|
|
63
63
|
},
|