Skip to content

Commit 8cdfcf2

Browse files
committed
Update release notes.
1 parent bddf070 commit 8cdfcf2

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

RELEASE_NOTES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Release notes
22

3+
## What's new in 1.4.1 September 2 2019
4+
### Fixes:
5+
* Properly handle null parameter for Copy and TryCopy (return null).
6+
7+
### Changes:
8+
* Copy and TryCopy consider string and Type as copyable types and return themselves if asked.
9+
310
## What's new in 1.4.0 September 1 2019
411
### New:
512
* Add an access to the Declaring Type directly through ImmediateType, ImmediateProperty and ImmediateField.

src/ImmediateReflection/ImmediateReflection.csproj

+4-11
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,12 @@ See benchmarks here: https://kernelith.github.io/ImmediateReflection/documentati
3939

4040
<IsPackable>true</IsPackable>
4141
<PackageId>ImmediateReflection</PackageId>
42-
<PackageReleaseNotes>➟ Release 1.4.0
43-
New:
44-
- Add an access to the Declaring Type directly through ImmediateType, ImmediateProperty and ImmediateField.
45-
- Add an access to the Base Type directly through ImmediateType.
46-
- Add CopyConstructorDelegate delegate.
47-
- Add the possibility to call Copy constructor in a faster way than Activator from ImmediateType.
48-
- Add a type extension to check if a type has a default constructor.
49-
- Add type extensions to check if a type has a copy constructor and to directly call it.
50-
- Add object extensions to check if an instance can be copied by a copy constructor and to directly call it.
42+
<PackageReleaseNotes>➟ Release 1.4.1
43+
Fixes:
44+
- Properly handle null parameter for Copy and TryCopy (return null).
5145

5246
Changes:
53-
- Globally optimize the library by reducing the number of redundant null checks.
54-
- Slightly optimize the branching in generated code.</PackageReleaseNotes>
47+
- Copy and TryCopy consider string and Type as copyable types and return themselves if asked.</PackageReleaseNotes>
5548
<PackageTags>C# Reflection Fast Immediate Performance Delegate Dynamic</PackageTags>
5649

5750
<PublishRepositoryUrl>true</PublishRepositoryUrl>

0 commit comments

Comments
 (0)