Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 1.16.0 #85

Merged
merged 1 commit into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Build/BSN.Commons.Orm.EntityFramework.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>BSN.Commons.Orm.EntityFramework</id>
<version>1.15.0</version>
<version>1.16.0</version>
<authors>Seyyed Soroosh Hosseinalipour</authors>
<owners>sorosh_sabz, BSN</owners>
<license type="expression">MIT</license>
Expand All @@ -16,7 +16,7 @@
<copyright>BSN Co 2019-2024</copyright>
<tags>Commons ORM Enterprise</tags>
<dependencies>
<dependency id="BSN.Commons" version="1.15.0" />
<dependency id="BSN.Commons" version="1.16.0" />
<dependency id="EntityFramework" version="6.4.0" />
<dependency id="Microsoft.AspNet.Identity.EntityFramework" version="2.2.3" />
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions Build/BSN.Commons.Users.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>BSN.Commons.Users</id>
<version>1.15.0</version>
<version>1.16.0</version>
<authors>Seyyed Soroosh Hosseinalipour</authors>
<owners>sorosh_sabz, BSN</owners>
<license type="expression">MIT</license>
Expand All @@ -16,7 +16,7 @@
<copyright>BSN Co 2019-2024</copyright>
<tags>Commons Users Enterprise</tags>
<dependencies>
<dependency id="BSN.Commons" version="1.15.0" />
<dependency id="BSN.Commons" version="1.16.0" />
<dependency id="EntityFramework" version="6.4.0" />
<dependency id="Microsoft.AspNet.Identity.EntityFramework" version="2.2.3" />
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion Build/build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mode: ContinuousDelivery
next-version: 1.15.0
next-version: 1.16.0
branches: {}
ignore:
sha: []
Expand Down
22 changes: 18 additions & 4 deletions Source/BSN.Commons.AutoMapper/BSN.Commons.AutoMapper.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<AssemblyVersion>1.15.0</AssemblyVersion>
<FileVersion>1.15.0</FileVersion>
<AssemblyVersion>1.16.0</AssemblyVersion>
<FileVersion>1.16.0</FileVersion>
<Authors>BSN Developers</Authors>
<Company>BSN Company</Company>
<Description>AutoMapper Helpers for using AutoMapper in enterprise application.</Description>
Expand All @@ -13,7 +13,7 @@
<RepositoryUrl>https://github.com/BSVN/Commons.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Please see CHANGELOG.md</PackageReleaseNotes>
<Version>1.15.0</Version>
<Version>1.16.0</Version>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Title>BSN.Commons.AutoMapper</Title>
Expand All @@ -34,6 +34,20 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\BSN.jpg">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
Expand Down
8 changes: 6 additions & 2 deletions Source/BSN.Commons.AutoMapper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

- Update documentation.
Original file line number Diff line number Diff line change
Expand Up @@ -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("")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<AssemblyVersion>1.15.0</AssemblyVersion>
<FileVersion>1.15.0</FileVersion>
<AssemblyVersion>1.16.0</AssemblyVersion>
<FileVersion>1.16.0</FileVersion>
<Authors>BSN Developers</Authors>
<Company>BSN Company</Company>
<Description>ORM Helpers for using entity framework core in enterprise application</Description>
Expand All @@ -13,7 +13,7 @@
<RepositoryUrl>https://github.com/BSVN/Commons.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Please see CHANGELOG.md</PackageReleaseNotes>
<Version>1.15.0</Version>
<Version>1.16.0</Version>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Title>BSN.Commons.Orm.EntityFrameworkCore</Title>
Expand Down
6 changes: 3 additions & 3 deletions Source/BSN.Commons.Orm.Redis/BSN.Commons.Orm.Redis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<AssemblyVersion>1.15.0</AssemblyVersion>
<FileVersion>1.15.0</FileVersion>
<AssemblyVersion>1.16.0</AssemblyVersion>
<FileVersion>1.16.0</FileVersion>
<Authors>BSN Developers</Authors>
<Company>BSN Company</Company>
<Description>ORM Helpers for using redis-om in enterprise application</Description>
Expand All @@ -13,7 +13,7 @@
<RepositoryUrl>https://github.com/BSVN/Commons.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Please see CHANGELOG.md</PackageReleaseNotes>
<Version>1.15.0</Version>
<Version>1.16.0</Version>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Title>BSN.Commons.Orm.Redis</Title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>Presentation infrastructure layer of BSN.Commons library for enterprise application.</Description>
<AssemblyVersion>1.15.0</AssemblyVersion>
<FileVersion>1.15.0</FileVersion>
<Version>1.15.0</Version>
<AssemblyVersion>1.16.0</AssemblyVersion>
<FileVersion>1.16.0</FileVersion>
<Version>1.16.0</Version>
<Authors>BSN Developers</Authors>
<Company>BSN Company</Company>
<Copyright>BSN Co 2019-2024</Copyright>
Expand Down
46 changes: 23 additions & 23 deletions Source/BSN.Commons.Users/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Cake.
// </auto-generated>
//------------------------------------------------------------------------------
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)]

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Cake.
// </auto-generated>
//------------------------------------------------------------------------------
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)]
6 changes: 3 additions & 3 deletions Source/BSN.Commons/BSN.Commons.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyVersion>1.15.0</AssemblyVersion>
<FileVersion>1.15.0</FileVersion>
<AssemblyVersion>1.16.0</AssemblyVersion>
<FileVersion>1.16.0</FileVersion>
<Company>BSN Company</Company>
<Authors>BSN Developers</Authors>
<Copyright>BSN Co 2019-2024</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.15.0</Version>
<Version>1.16.0</Version>
<PackageProjectUrl>https://github.com/BSVN/Commons</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<Description>Commons library for enterprise application</Description>
Expand Down
10 changes: 10 additions & 0 deletions Source/BSN.Commons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading