diff --git a/CHANGELOG.md b/CHANGELOG.md index bbb3a74..8e31a90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Nothing yet. +## [0.2.2] - 2025-01-29 + +### Fixed + +- Empty field value descriptions. + ## [0.2.1] - 2025-01-29 ### Fixed @@ -47,7 +53,8 @@ Nothing yet. Initial release, including basic account management, languages, 8 field types, content types & field definitions, and contents, invariant & translated, field values, indices and published contents. -[unreleased]: https://github.com/Logitar/CMS/compare/v0.2.1...HEAD +[unreleased]: https://github.com/Logitar/CMS/compare/v0.2.2...HEAD +[0.2.2]: https://github.com/Logitar/CMS/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/Logitar/CMS/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/Logitar/CMS/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/Logitar/CMS/releases/tag/v0.1.0 diff --git a/backend/src/Logitar.Cms.Core/Logitar.Cms.Core.csproj b/backend/src/Logitar.Cms.Core/Logitar.Cms.Core.csproj index 6d675aa..a07babf 100644 --- a/backend/src/Logitar.Cms.Core/Logitar.Cms.Core.csproj +++ b/backend/src/Logitar.Cms.Core/Logitar.Cms.Core.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/CMS git - 0.2.1.0 + 0.2.2.0 $(AssemblyVersion) LICENSE True - 0.2.1 + 0.2.2 en-CA False - Fixed Number, String & RichText bounds validation and handling. + Fixed empty field value descriptions. logitar;content;management;system;domain;application;business;core;logic https://github.com/Logitar/CMS/tree/main/backend/src/Logitar.Cms.Core diff --git a/backend/src/Logitar.Cms.Infrastructure.PostgreSQL/Logitar.Cms.Infrastructure.PostgreSQL.csproj b/backend/src/Logitar.Cms.Infrastructure.PostgreSQL/Logitar.Cms.Infrastructure.PostgreSQL.csproj index 8898161..5427ab3 100644 --- a/backend/src/Logitar.Cms.Infrastructure.PostgreSQL/Logitar.Cms.Infrastructure.PostgreSQL.csproj +++ b/backend/src/Logitar.Cms.Infrastructure.PostgreSQL/Logitar.Cms.Infrastructure.PostgreSQL.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/CMS git - 0.2.1.0 + 0.2.2.0 $(AssemblyVersion) LICENSE True - 0.2.1 + 0.2.2 en-CA False - Fixed Number, String & RichText bounds validation and handling. + Fixed empty field value descriptions. logitar;cms;efcore;sqlserver;store https://github.com/Logitar/CMS/tree/main/backend/src/Logitar.Cms.Infrastructure.SqlServer diff --git a/backend/src/Logitar.Cms.Infrastructure.SqlServer/Logitar.Cms.Infrastructure.SqlServer.csproj b/backend/src/Logitar.Cms.Infrastructure.SqlServer/Logitar.Cms.Infrastructure.SqlServer.csproj index ea8df65..1c34b90 100644 --- a/backend/src/Logitar.Cms.Infrastructure.SqlServer/Logitar.Cms.Infrastructure.SqlServer.csproj +++ b/backend/src/Logitar.Cms.Infrastructure.SqlServer/Logitar.Cms.Infrastructure.SqlServer.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/CMS git - 0.2.1.0 + 0.2.2.0 $(AssemblyVersion) LICENSE True - 0.2.1 + 0.2.2 en-CA False - Fixed Number, String & RichText bounds validation and handling. + Fixed empty field value descriptions. logitar;cms;efcore;sqlserver;store https://github.com/Logitar/CMS/tree/main/backend/src/Logitar.Cms.Infrastructure.SqlServer diff --git a/backend/src/Logitar.Cms.Infrastructure/Logitar.Cms.Infrastructure.csproj b/backend/src/Logitar.Cms.Infrastructure/Logitar.Cms.Infrastructure.csproj index 60f6ca7..a418944 100644 --- a/backend/src/Logitar.Cms.Infrastructure/Logitar.Cms.Infrastructure.csproj +++ b/backend/src/Logitar.Cms.Infrastructure/Logitar.Cms.Infrastructure.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/CMS git - 0.2.1.0 + 0.2.2.0 $(AssemblyVersion) LICENSE True - 0.2.1 + 0.2.2 en-CA False - Fixed Number, String & RichText bounds validation and handling. + Fixed empty field value descriptions. logitar;content;management;system;infrastructure;logic;caching;persistence https://github.com/Logitar/CMS/tree/main/backend/src/Logitar.Cms.Infrastructure diff --git a/backend/src/Logitar.Cms.Web/Logitar.Cms.Web.csproj b/backend/src/Logitar.Cms.Web/Logitar.Cms.Web.csproj index 17b132b..21d7840 100644 --- a/backend/src/Logitar.Cms.Web/Logitar.Cms.Web.csproj +++ b/backend/src/Logitar.Cms.Web/Logitar.Cms.Web.csproj @@ -16,14 +16,14 @@ README.md https://github.com/Logitar/CMS git - 0.2.1.0 + 0.2.2.0 $(AssemblyVersion) LICENSE True - 0.2.1 + 0.2.2 en-CA False - Fixed Number, String & RichText bounds validation and handling. + Fixed empty field value descriptions. logitar;cms;web;interface;rest;api;controller;filter;razor;view https://github.com/Logitar/CMS/tree/main/backend/src/Logitar.Cms.Web diff --git a/backend/src/Logitar.Cms/Constants/Api.cs b/backend/src/Logitar.Cms/Constants/Api.cs index 81778f4..b3b72d7 100644 --- a/backend/src/Logitar.Cms/Constants/Api.cs +++ b/backend/src/Logitar.Cms/Constants/Api.cs @@ -3,5 +3,5 @@ internal static class Api { public const string Title = "CMS API"; - public static readonly Version Version = new(0, 2, 1); + public static readonly Version Version = new(0, 2, 2); } diff --git a/frontend/package-lock.json b/frontend/package-lock.json index fd6cb93..c6240d8 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "logitar-cms", - "version": "0.2.1", + "version": "0.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "logitar-cms", - "version": "0.2.1", + "version": "0.2.2", "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.5.2", "@fortawesome/free-brands-svg-icons": "^6.5.2", diff --git a/frontend/package.json b/frontend/package.json index 6bde88f..cc060f2 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "logitar-cms", - "version": "0.2.1", + "version": "0.2.2", "private": true, "type": "module", "scripts": { diff --git a/frontend/src/components/fields/BooleanFieldValueEdit.vue b/frontend/src/components/fields/BooleanFieldValueEdit.vue index 713461f..1c8a634 100644 --- a/frontend/src/components/fields/BooleanFieldValueEdit.vue +++ b/frontend/src/components/fields/BooleanFieldValueEdit.vue @@ -29,7 +29,7 @@ defineEmits<{ raw @update:model-value="$emit('update:model-value', ($event as boolean).toString())" > -