From 2554159e467504e3338279b87831f0d79df8279c Mon Sep 17 00:00:00 2001 From: meghasemim1999 <30366887+meghasemim1999@users.noreply.github.com> Date: Fri, 12 Jul 2024 10:03:14 +0330 Subject: [PATCH] Update version to 1.16.0 (#85) --- Build/BSN.Commons.Orm.EntityFramework.nuspec | 4 +- Build/BSN.Commons.Users.nuspec | 4 +- Build/build.cake | 2 +- GitVersion.yml | 2 +- .../BSN.Commons.AutoMapper.csproj | 22 +++++++-- Source/BSN.Commons.AutoMapper/CHANGELOG.md | 8 +++- .../Properties/AssemblyInfo.cs | 6 +-- ...BSN.Commons.Orm.EntityFrameworkCore.csproj | 6 +-- .../BSN.Commons.Orm.Redis.csproj | 6 +-- ....Commons.PresentationInfrastructure.csproj | 6 +-- .../Properties/AssemblyInfo.cs | 46 +++++++++---------- Source/BSN.Commons/BSN.Commons.csproj | 6 +-- Source/BSN.Commons/CHANGELOG.md | 10 ++++ 13 files changed, 78 insertions(+), 50 deletions(-) diff --git a/Build/BSN.Commons.Orm.EntityFramework.nuspec b/Build/BSN.Commons.Orm.EntityFramework.nuspec index ab6429f..0f7ba2d 100644 --- a/Build/BSN.Commons.Orm.EntityFramework.nuspec +++ b/Build/BSN.Commons.Orm.EntityFramework.nuspec @@ -2,7 +2,7 @@ BSN.Commons.Orm.EntityFramework - 1.15.0 + 1.16.0 Seyyed Soroosh Hosseinalipour sorosh_sabz, BSN MIT @@ -16,7 +16,7 @@ BSN Co 2019-2024 Commons ORM Enterprise - + diff --git a/Build/BSN.Commons.Users.nuspec b/Build/BSN.Commons.Users.nuspec index 9fd82ac..331768e 100644 --- a/Build/BSN.Commons.Users.nuspec +++ b/Build/BSN.Commons.Users.nuspec @@ -2,7 +2,7 @@ BSN.Commons.Users - 1.15.0 + 1.16.0 Seyyed Soroosh Hosseinalipour sorosh_sabz, BSN MIT @@ -16,7 +16,7 @@ BSN Co 2019-2024 Commons Users Enterprise - + diff --git a/Build/build.cake b/Build/build.cake index 2737a44..9047e47 100644 --- a/Build/build.cake +++ b/Build/build.cake @@ -16,7 +16,7 @@ var artifactsDir = "./artifacts/"; var solutionPath = "../BSN.Commons.sln"; var projectName = "BSN.Commons"; var projectFolder = "../Source/"; -var solutionVersion = "1.15.0"; +var solutionVersion = "1.16.0"; var projects = new List<(string path, string name, string version)> { ("BSN.Commons/", "BSN.Commons.csproj", solutionVersion), diff --git a/GitVersion.yml b/GitVersion.yml index 95c630d..86f9fc7 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,5 +1,5 @@ mode: ContinuousDelivery -next-version: 1.15.0 +next-version: 1.16.0 branches: {} ignore: sha: [] diff --git a/Source/BSN.Commons.AutoMapper/BSN.Commons.AutoMapper.csproj b/Source/BSN.Commons.AutoMapper/BSN.Commons.AutoMapper.csproj index caf4d84..644a391 100644 --- a/Source/BSN.Commons.AutoMapper/BSN.Commons.AutoMapper.csproj +++ b/Source/BSN.Commons.AutoMapper/BSN.Commons.AutoMapper.csproj @@ -1,9 +1,9 @@ - + net8.0 - 1.15.0 - 1.15.0 + 1.16.0 + 1.16.0 BSN Developers BSN Company AutoMapper Helpers for using AutoMapper in enterprise application. @@ -13,7 +13,7 @@ https://github.com/BSVN/Commons.git git Please see CHANGELOG.md - 1.15.0 + 1.16.0 True True BSN.Commons.AutoMapper @@ -34,6 +34,20 @@ enable + + + True + \ + + + + + + True + \ + + + diff --git a/Source/BSN.Commons.AutoMapper/CHANGELOG.md b/Source/BSN.Commons.AutoMapper/CHANGELOG.md index 05d22aa..c60213b 100644 --- a/Source/BSN.Commons.AutoMapper/CHANGELOG.md +++ b/Source/BSN.Commons.AutoMapper/CHANGELOG.md @@ -5,16 +5,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.15.0] - 2024-06-29 +## [1.16.0] - 2024-06-29 + Fixed issue with mapping between domain and view models. ### Added + - README.md and CHANGELOG.md - Added support for AutoMapper 13.0.1 - Added predefined conversions for mapping `BSN.Commons.PresentationInfrastructure` Models. ### Fixed + - Resolve some missing elements in nupkg. ### Changed -- Update documentation. \ No newline at end of file + +- Update documentation. diff --git a/Source/BSN.Commons.Orm.EntityFramework/Properties/AssemblyInfo.cs b/Source/BSN.Commons.Orm.EntityFramework/Properties/AssemblyInfo.cs index c94dd6b..abead64 100644 --- a/Source/BSN.Commons.Orm.EntityFramework/Properties/AssemblyInfo.cs +++ b/Source/BSN.Commons.Orm.EntityFramework/Properties/AssemblyInfo.cs @@ -11,9 +11,9 @@ [assembly: AssemblyDescription("ORM Helpers for using entity framework in enterprise application")] [assembly: AssemblyCompany("BSN Company")] [assembly: AssemblyProduct("BSN.Commons.Orm.EntityFramework")] -[assembly: AssemblyVersion("1.15.0")] -[assembly: AssemblyFileVersion("1.15.0")] -[assembly: AssemblyInformationalVersion("1.15.0")] +[assembly: AssemblyVersion("1.16.0")] +[assembly: AssemblyFileVersion("1.16.0")] +[assembly: AssemblyInformationalVersion("1.16.0")] [assembly: AssemblyCopyright("Copyright © 2020-2024 BSN Co.")] [assembly: AssemblyTrademark("")] [assembly: AssemblyConfiguration("")] diff --git a/Source/BSN.Commons.Orm.EntityFrameworkCore/BSN.Commons.Orm.EntityFrameworkCore.csproj b/Source/BSN.Commons.Orm.EntityFrameworkCore/BSN.Commons.Orm.EntityFrameworkCore.csproj index 934eed2..69da4d2 100644 --- a/Source/BSN.Commons.Orm.EntityFrameworkCore/BSN.Commons.Orm.EntityFrameworkCore.csproj +++ b/Source/BSN.Commons.Orm.EntityFrameworkCore/BSN.Commons.Orm.EntityFrameworkCore.csproj @@ -2,8 +2,8 @@ net6.0;net8.0 - 1.15.0 - 1.15.0 + 1.16.0 + 1.16.0 BSN Developers BSN Company ORM Helpers for using entity framework core in enterprise application @@ -13,7 +13,7 @@ https://github.com/BSVN/Commons.git git Please see CHANGELOG.md - 1.15.0 + 1.16.0 True True BSN.Commons.Orm.EntityFrameworkCore diff --git a/Source/BSN.Commons.Orm.Redis/BSN.Commons.Orm.Redis.csproj b/Source/BSN.Commons.Orm.Redis/BSN.Commons.Orm.Redis.csproj index 0073155..0992d72 100644 --- a/Source/BSN.Commons.Orm.Redis/BSN.Commons.Orm.Redis.csproj +++ b/Source/BSN.Commons.Orm.Redis/BSN.Commons.Orm.Redis.csproj @@ -2,8 +2,8 @@ net8.0 - 1.15.0 - 1.15.0 + 1.16.0 + 1.16.0 BSN Developers BSN Company ORM Helpers for using redis-om in enterprise application @@ -13,7 +13,7 @@ https://github.com/BSVN/Commons.git git Please see CHANGELOG.md - 1.15.0 + 1.16.0 True True BSN.Commons.Orm.Redis diff --git a/Source/BSN.Commons.PresentationInfrastructure/BSN.Commons.PresentationInfrastructure.csproj b/Source/BSN.Commons.PresentationInfrastructure/BSN.Commons.PresentationInfrastructure.csproj index b7a0dc7..7636d7c 100644 --- a/Source/BSN.Commons.PresentationInfrastructure/BSN.Commons.PresentationInfrastructure.csproj +++ b/Source/BSN.Commons.PresentationInfrastructure/BSN.Commons.PresentationInfrastructure.csproj @@ -3,9 +3,9 @@ netstandard2.0 Presentation infrastructure layer of BSN.Commons library for enterprise application. - 1.15.0 - 1.15.0 - 1.15.0 + 1.16.0 + 1.16.0 + 1.16.0 BSN Developers BSN Company BSN Co 2019-2024 diff --git a/Source/BSN.Commons.Users/Properties/AssemblyInfo.cs b/Source/BSN.Commons.Users/Properties/AssemblyInfo.cs index b8e17db..7f320d1 100644 --- a/Source/BSN.Commons.Users/Properties/AssemblyInfo.cs +++ b/Source/BSN.Commons.Users/Properties/AssemblyInfo.cs @@ -1,23 +1,23 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by Cake. -// -//------------------------------------------------------------------------------ -using System.Reflection; -using System.Runtime.InteropServices; -using System; - -[assembly: AssemblyTitle("BSN.Commons.Users")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("BSN.Commons.Users")] -[assembly: AssemblyVersion("1.15.0")] -[assembly: AssemblyFileVersion("1.15.0")] -[assembly: AssemblyInformationalVersion("1.15.0")] -[assembly: AssemblyCopyright("Copyright © 2022 BSN Co.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyConfiguration("")] -[assembly: Guid("213abcef-7e9a-4ce5-a3ef-289c9781344d")] -[assembly: ComVisible(false)] -[assembly: CLSCompliant(false)] - +//------------------------------------------------------------------------------ +// +// This code was generated by Cake. +// +//------------------------------------------------------------------------------ +using System.Reflection; +using System.Runtime.InteropServices; +using System; + +[assembly: AssemblyTitle("BSN.Commons.Users")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("BSN.Commons.Users")] +[assembly: AssemblyVersion("1.16.0")] +[assembly: AssemblyFileVersion("1.16.0")] +[assembly: AssemblyInformationalVersion("1.16.0")] +[assembly: AssemblyCopyright("Copyright © 2022 BSN Co.")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyConfiguration("")] +[assembly: Guid("213abcef-7e9a-4ce5-a3ef-289c9781344d")] +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] + diff --git a/Source/BSN.Commons/BSN.Commons.csproj b/Source/BSN.Commons/BSN.Commons.csproj index 0c39837..d47562f 100644 --- a/Source/BSN.Commons/BSN.Commons.csproj +++ b/Source/BSN.Commons/BSN.Commons.csproj @@ -2,13 +2,13 @@ netstandard2.0 - 1.15.0 - 1.15.0 + 1.16.0 + 1.16.0 BSN Company BSN Developers BSN Co 2019-2024 true - 1.15.0 + 1.16.0 https://github.com/BSVN/Commons Commons library for enterprise application diff --git a/Source/BSN.Commons/CHANGELOG.md b/Source/BSN.Commons/CHANGELOG.md index 333444d..d78ded5 100644 --- a/Source/BSN.Commons/CHANGELOG.md +++ b/Source/BSN.Commons/CHANGELOG.md @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.16.0] - 2024-07-03 + +### Added + +- Added AutoMapper Extension + +### Fixed + +- RabbitMq Bug fix + ## [1.15.0] - 2024-02-25 ### Added