Skip to content

Commit e514428

Browse files
committed
chore: remove version number from package.json for each library
We are using `semantic-release` which overrides the number in `package.json` with an appropriate version number and doesn't commit it back to git. To understand the reasons why it doesn't, please see this FAQ entry: https://github.com/semantic-release/semantic-release/blob/73bcd0bcdb98322c5c5224ffb55960de114c3fd1/docs/support/FAQ.md#why-is-the-packagejsons-version-not-updated-in-my-repository But having the `version` numbers in our repository is potentially confusing because people may look to that field to see what the latest version is. So this commit updates our repo to use the value `0.0.0-semantically-released`, as per the recommendation of that same FAQ entry, so as to use a less confusing value that points to the right way to see our latest version, while still technically adhering to the requirements of the `package.json` format about a version number being present and using a valid version format.
1 parent 6846567 commit e514428

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/kurt-open-ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@formula-monks/kurt-open-ai",
33
"description": "OpenAI plugin for Kurt - A wrapper for AI SDKs, for building LLM-agnostic structured AI applications",
44
"license": "MIT",
5-
"version": "1.0.0",
5+
"version": "0.0.0-semantically-released",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",
88
"files": ["dist"],

packages/kurt-vertex-ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@formula-monks/kurt-vertex-ai",
33
"description": "VertexAI plugin for Kurt - A wrapper for AI SDKs, for building LLM-agnostic structured AI applications",
44
"license": "MIT",
5-
"version": "1.0.0",
5+
"version": "0.0.0-semantically-released",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",
88
"files": ["dist"],

packages/kurt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@formula-monks/kurt",
33
"description": "A wrapper for AI SDKs, for building LLM-agnostic structured AI applications",
44
"license": "MIT",
5-
"version": "1.0.0",
5+
"version": "0.0.0-semantically-released",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",
88
"files": ["dist"],

0 commit comments

Comments
 (0)