File tree 2 files changed +22
-4
lines changed
2 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Release notes
2
2
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
+
3
18
## What's new in 1.2.0 July 18 2019
4
19
### New:
5
20
* Add ConstructorDelegate delegate.
Original file line number Diff line number Diff line change @@ -39,15 +39,18 @@ See benchmarks here: https://kernelith.github.io/ImmediateReflection/documentati
39
39
40
40
<IsPackable >true</IsPackable >
41
41
<PackageId >ImmediateReflection</PackageId >
42
- <PackageReleaseNotes >➟ Release 1.2 .0
42
+ <PackageReleaseNotes >➟ Release 1.3 .0
43
43
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).
45
46
46
47
Fixes:
47
- - Classes with indexed properties does not crash anymore .
48
+ - ImmediateType properly handle arrays which were crashing before .
48
49
49
50
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 >
51
54
<PackageTags >C# Reflection Fast Immediate Performance Delegate Dynamic</PackageTags >
52
55
53
56
<PublishRepositoryUrl >true</PublishRepositoryUrl >
You can’t perform that action at this time.
0 commit comments