diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f44911..4e7cd16 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.3.0] - 2025-01-30 + +### Changed + +- Moved data tables under a schema. + ## [0.2.3] - 2025-01-29 ### Added @@ -59,7 +65,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.3...HEAD +[unreleased]: https://github.com/Logitar/CMS/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/Logitar/CMS/compare/v0.2.3...v0.3.0 [0.2.3]: https://github.com/Logitar/CMS/compare/v0.2.2...v0.2.3 [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 diff --git a/backend/src/Logitar.Cms.Core/Logitar.Cms.Core.csproj b/backend/src/Logitar.Cms.Core/Logitar.Cms.Core.csproj index 04fef1f..f7e76e0 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.3.0 + 0.3.0.0 $(AssemblyVersion) LICENSE True - 0.2.3 + 0.3.0 en-CA False - Implement read user by unique name. + Moved data tables under a schema. 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 33d0800..709038c 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.3.0 + 0.3.0.0 $(AssemblyVersion) LICENSE True - 0.2.3 + 0.3.0 en-CA False - Implement read user by unique name. + Moved data tables under a schema. 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 89a8700..9be84e8 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.3.0 + 0.3.0.0 $(AssemblyVersion) LICENSE True - 0.2.3 + 0.3.0 en-CA False - Implement read user by unique name. + Moved data tables under a schema. 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 b07a753..8e5a5b6 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.3.0 + 0.3.0.0 $(AssemblyVersion) LICENSE True - 0.2.3 + 0.3.0 en-CA False - Implement read user by unique name. + Moved data tables under a schema. 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 3991900..f71b212 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.3.0 + 0.3.0.0 $(AssemblyVersion) LICENSE True - 0.2.3 + 0.3.0 en-CA False - Implement read user by unique name. + Moved data tables under a schema. 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 dea8b3a..0143d00 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, 3); + public static readonly Version Version = new(0, 3, 0); } diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 6d6658d..d81d900 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "logitar-cms", - "version": "0.2.3", + "version": "0.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "logitar-cms", - "version": "0.2.3", + "version": "0.3.0", "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 9323c5c..aa13cdb 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "logitar-cms", - "version": "0.2.3", + "version": "0.3.0", "private": true, "type": "module", "scripts": {