llm-messages 0.5.2 → 0.5.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 +6 -0
- package/README.md +1 -1
- package/package.json +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.5.3] - 2026-06-29
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- The npm package page showed a broken "resource not found" downloads badge after the self-hosted badge JSON was removed. The README now uses shields.io's native `npm/dm` badge, which renders the live download count directly on npm.
|
|
14
|
+
|
|
9
15
|
## [0.5.2] - 2026-06-12
|
|
10
16
|
|
|
11
17
|
### Summary
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# llm-messages
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/llm-messages)
|
|
4
|
-
[](https://www.npmjs.com/package/llm-messages)
|
|
5
5
|
[](https://github.com/slegarraga/llm-messages/actions/workflows/ci.yml)
|
|
6
6
|
[](https://scorecard.dev/viewer/?uri=github.com/slegarraga/llm-messages)
|
|
7
7
|
[](./LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-messages",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "Convert chat conversations and responses between OpenAI, Anthropic and Gemini. Tool calls, images, audio, documents and roles handled. Zero dependencies.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openai",
|
|
@@ -80,9 +80,7 @@
|
|
|
80
80
|
"format": "prettier --write .",
|
|
81
81
|
"format:check": "prettier --check .",
|
|
82
82
|
"prepublishOnly": "npm run check",
|
|
83
|
-
"prepare": "npm run build"
|
|
84
|
-
"badges:downloads": "node scripts/update-download-badge.mjs",
|
|
85
|
-
"badges:downloads:check": "node scripts/update-download-badge.mjs --check"
|
|
83
|
+
"prepare": "npm run build"
|
|
86
84
|
},
|
|
87
85
|
"devDependencies": {
|
|
88
86
|
"@eslint/js": "^10.0.1",
|