Skip to content

Commit 474e554

Browse files
committed
Updating to v0.21.1
1 parent 11d9864 commit 474e554

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

AgileMapper/AgileMapper.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
<Import Project="..\common.props" />
33

44
<PropertyGroup>
5-
<Description>A zero-configuration, highly-configurable object-object mapper with viewable execution plans. Performs deep clones, updates and merges via a static or instance API. Conforms to .NET Standard 1.0.</Description>
5+
<Summary>A zero-configuration, highly-configurable object-object mapper with viewable execution plans. Transforms, deep clones, updates and merges via extension methods, or a static or instance API. Targets .NET Standard 1.0 and .NET 4.0.</Summary>
6+
<Description>A zero-configuration, highly-configurable object-object mapper with viewable execution plans. Transforms, deep clones, updates and merges via extension methods, or a static or instance API. Targets .NET Standard 1.0 and .NET 4.0.</Description>
67
<AssemblyTitle>AgileObjects.AgileMapper</AssemblyTitle>
78
<TargetFrameworks>netstandard1.0;netstandard1.3;net40</TargetFrameworks>
89
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
910
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1011
<AssemblyName>AgileObjects.AgileMapper</AssemblyName>
1112
<PackageId>AgileObjects.AgileMapper</PackageId>
13+
<Title>AgileMapper</Title>
1214
<PackageTags>Mapper, Mapping, Mappings, ViewModel, DTO, NetStandard</PackageTags>
1315
<PackageProjectUrl>https://github.com/AgileObjects/AgileMapper</PackageProjectUrl>
1416
<PackageLicenseUrl>https://github.com/agileobjects/AgileMapper/blob/master/LICENCE.md</PackageLicenseUrl>

AgileMapper/AgileObjects.AgileMapper.nuspec

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
<description>$description$</description>
1313
<summary>$description$</summary>
1414
<releaseNotes>
15-
- Support for using to-String operators to convert values to strings, re issue #51
16-
- Surfacing static Mapper.ResetDefaultInstance() method
15+
- Fixing support for NetCoreApp2 projects; enum mapping, string.Join and cast operator use
1716
</releaseNotes>
1817
<copyright>$copyright$</copyright>
1918
<tags>Mapper, Mapping, Mappings, ViewModel, DTO, NetStandard</tags>

VersionInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
using System.Reflection;
22

3-
[assembly: AssemblyVersion("0.21.0")]
4-
[assembly: AssemblyFileVersion("0.21.0")]
3+
[assembly: AssemblyVersion("0.21.1")]
4+
[assembly: AssemblyFileVersion("0.21.1")]

common.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1010
<RepositoryType>git</RepositoryType>
1111
<RepositoryUrl>https://github.com/AgileObjects/AgileMapper</RepositoryUrl>
12-
<Version>0.21.0</Version>
13-
<AssemblyVersion>0.21.0.0</AssemblyVersion>
14-
<FileVersion>0.21.0.0</FileVersion>
12+
<Version>0.21.1</Version>
13+
<AssemblyVersion>0.21.1.0</AssemblyVersion>
14+
<FileVersion>0.21.1.0</FileVersion>
1515
</PropertyGroup>
1616

1717
</Project>

0 commit comments

Comments
 (0)