Skip to content

Commit d749d4f

Browse files
committed
Updating to v0.25
1 parent b6ff1d4 commit d749d4f

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

AgileMapper/AgileObjects.AgileMapper.nuspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@
1212
<description>$description$</description>
1313
<summary>$description$</summary>
1414
<releaseNotes>
15-
- Support for configured root target data sources, re: issue #64
16-
- Support for splitting configuration into dedicated, discoverable classes
15+
- Adding Mapper.Map(source).ToANew(Type) for runtime-typed mappings
16+
- .NET 3.5 support
17+
- Adding .ToRoot() custom data source target specifier
18+
- Adding GetServiceOrThrow() to base MapperConfiguration
19+
- Support for Dictionary mapping in partial trust environments
1720
- Performance and memory use improvements
1821
</releaseNotes>
1922
<copyright>$copyright$</copyright>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
AgileMapper is a zero-configuration, [highly-configurable](https://github.com/agileobjects/AgileMapper/wiki/Configuration) object-object mapper with [viewable execution plans](https://github.com/agileobjects/AgileMapper/wiki/Using-Execution-Plans).
66
It projects queries, transforms, deep clones, updates and merges via extension methods, or a [static or instance](https://github.com/agileobjects/AgileMapper/wiki/Static-vs-Instance-Mappers) API.
7-
It targets [.NET Standard 1.0](https://docs.microsoft.com/en-us/dotnet/articles/standard/library) and .NET 4.0.
7+
It targets [.NET Standard 1.0+](https://docs.microsoft.com/en-us/dotnet/articles/standard/library) and .NET 3.5+
88

99
You can use it to create new objects:
1010

VersionInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
using System.Reflection;
22

3-
[assembly: AssemblyVersion("0.24.0")]
4-
[assembly: AssemblyFileVersion("0.24.0")]
3+
[assembly: AssemblyVersion("0.25.0")]
4+
[assembly: AssemblyFileVersion("0.25.0")]

common.props

Lines changed: 3 additions & 3 deletions
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.24.0</Version>
13-
<AssemblyVersion>0.24.0.0</AssemblyVersion>
14-
<FileVersion>0.24.0.0</FileVersion>
12+
<Version>0.25.0</Version>
13+
<AssemblyVersion>0.25.0.0</AssemblyVersion>
14+
<FileVersion>0.25.0.0</FileVersion>
1515
</PropertyGroup>
1616

1717
</Project>

0 commit comments

Comments
 (0)