Skip to content

Commit cc2f57a

Browse files
committed
Update release notes.
1 parent ad5f9a0 commit cc2f57a

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

RELEASE_NOTES.md

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

3+
## What's new in 1.3.0 July 23 2019
4+
### New:
5+
* Add type extensions to directly call a default constructor delegate from a Type (without ImmediateType).
6+
* Add type extensions to directly call a constructor delegate from a Type (without ImmediateType).
7+
8+
### Fixes:
9+
* ImmediateType properly handle arrays which were crashing before.
10+
11+
### Changes:
12+
* Default constructor delegates available via ImmediateType are now cached and shared across several instance of ImmediateType.
13+
* ImmediateProperty are now cached and shared across several instance of ImmediateType.
14+
* ImmediateField are now cached and shared across several instance of ImmediateType.
15+
16+
---
17+
318
## What's new in 1.2.0 July 18 2019
419
### New:
520
* Add ConstructorDelegate delegate.

src/ImmediateReflection/ImmediateReflection.csproj

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

4040
<IsPackable>true</IsPackable>
4141
<PackageId>ImmediateReflection</PackageId>
42-
<PackageReleaseNotes>➟ Release 1.2.0
42+
<PackageReleaseNotes>➟ Release 1.3.0
4343
New:
44-
- Add ConstructorDelegate delegate.
44+
- Add type extensions to directly call a default constructor delegate from a Type (without ImmediateType).
45+
- Add type extensions to directly call a constructor delegate from a Type (without ImmediateType).
4546

4647
Fixes:
47-
- Classes with indexed properties does not crash anymore.
48+
- ImmediateType properly handle arrays which were crashing before.
4849

4950
Changes:
50-
- Lazily initialize fields property of ImmediateType.</PackageReleaseNotes>
51+
- Default constructor delegates available via ImmediateType are now cached and shared across several instance of ImmediateType.
52+
- ImmediateProperty are now cached and shared across several instance of ImmediateType.
53+
- ImmediateField are now cached and shared across several instance of ImmediateType.</PackageReleaseNotes>
5154
<PackageTags>C# Reflection Fast Immediate Performance Delegate Dynamic</PackageTags>
5255

5356
<PublishRepositoryUrl>true</PublishRepositoryUrl>

0 commit comments

Comments
 (0)