Compare commits

..

2 Commits

Author SHA1 Message Date
5148bd1fff 4.1.1
Some checks failed
Docker (tags) / security (push) Failing after 0s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2024-10-28 16:55:25 +01:00
41c54a070c fix(core): Fixed syntax issues in commitinfo data and package.json file. 2024-10-28 16:55:25 +01:00
4 changed files with 11 additions and 4 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 2024-10-28 - 4.1.1 - fix(core)
Fixed syntax issues in commitinfo data and package.json file.
- Added a missing newline at the end of the package.json file.
- Corrected a trailing comma and added proper syntax in the commitinfo data.
## 2024-10-28 - 4.1.0 - feat(core)
Enhance core functionality for cloud management and orchestration

View File

@ -1,6 +1,6 @@
{
"name": "@serve.zone/cloudly",
"version": "4.1.0",
"version": "4.1.1",
"private": false,
"description": "A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.",
"type": "module",
@ -18,7 +18,8 @@
"start": "node cli.js",
"startTs": "node cli.ts.js",
"watch": "tswatch website",
"publish": "tspublish"
"publish": "tspublish",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.85",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '4.1.0',
version: '4.1.1',
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
}

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '4.1.0',
version: '4.1.1',
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
}