File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -80,18 +80,15 @@ jobs:
8080 if 'packages' in data:
8181 for package in data['packages']:
8282 registry_type = package.get('registryType')
83- # For OCI packages: version is embedded in identifier (2025-10-11 schema)
83+ # Update version field for all package types
84+ package['version'] = version
85+
86+ # For OCI packages: also update version in identifier
8487 if registry_type == 'oci':
8588 identifier = package.get('identifier', '')
86- # Update identifier with new version tag
8789 if ':' in identifier:
8890 base = identifier.rsplit(':', 1)[0]
8991 package['identifier'] = f'{base}:v{version}'
90- # Remove separate version field if it exists (old schema)
91- package.pop('version', None)
92- else:
93- # For npm, pypi, nuget: keep separate version field
94- package['version'] = version
9592
9693 # Update Docker args with new version
9794 transport = package.get('transport', {})
Original file line number Diff line number Diff line change 11[project ]
22name = " codealive-mcp"
3- version = " 0.4.2 "
3+ version = " 0.4.3 "
44description = " MCP server for the CodeAlive API"
55readme = " README.md"
66requires-python = " >=3.11"
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json" ,
33 "name" : " io.github.CodeAlive-AI/codealive-mcp" ,
4- "version" : " 0.4.1 " ,
4+ "version" : " 0.4.2 " ,
55 "description" : " Semantic code search and analysis from CodeAlive for AI assistants and agents." ,
66 "keywords" : [
77 " context-engineering" ,
3333 "packages" : [
3434 {
3535 "registryType" : " oci" ,
36- "identifier" : " ghcr.io/codealive-ai/codealive-mcp:v0.4.1" ,
36+ "identifier" : " ghcr.io/codealive-ai/codealive-mcp:v0.4.2" ,
37+ "version" : " 0.4.2" ,
3738 "transport" : {
3839 "type" : " stdio" ,
3940 "command" : " docker" ,
4344 " -i" ,
4445 " -e" ,
4546 " CODEALIVE_API_KEY=YOUR_API_KEY_HERE" ,
46- " ghcr.io/codealive-ai/codealive-mcp:v0.4.1 "
47+ " ghcr.io/codealive-ai/codealive-mcp:v0.4.2 "
4748 ]
4849 }
4950 }
You can’t perform that action at this time.
0 commit comments