Skip to content

Commit 41dcaf5

Browse files
authored
v0.11.0 (#147)
1 parent 1f20c9a commit 41dcaf5

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

docs/changelogs/v0.11.0.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# v0.11.0
2+
3+
## Breaking changes
4+
5+
- Rename `ValueOrDefault()` to `GetValueOrDefault()` in `IDictionaryExtensions` and `IReadOnlyDictionaryExtensions`
6+
- Remove from `Func`: `Memoize()`, `TupleArgs()`, and `UntupleArgs()`
7+
- Serialize `AbsoluteUri` and `RelativeUri` as JSON in the same way as `Uri` (as a string instead of property-by-property)
8+
- Remove `AnonymousComparer<T>` (covered by `Comparer<T>.Create()`)
9+
- In `Renumerable.OnKeys()` and `OnValues()`, throw `ArgumentNullException` when `func` is null instead of `NullReferenceException`
10+
- Remove `LinkedListExtensions.Append()` (will resolve to `ICollectionExtions.Append()` as long as it is called through extension method syntax)
11+
- Remove `AbsoluteUri`'s constructors for combining URIs
12+
- Change `AbsoluteUri.Combine()` to work the same as `Uri.ctor(Uri, Uri)`
13+
- Remove `RelativeUri.Combine()`

src/Recore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<LangVersion>7.3</LangVersion>
66
<RootNamespace>Recore</RootNamespace>
7-
<AssemblyVersion>0.10.0.0</AssemblyVersion>
8-
<FileVersion>0.10.0.0</FileVersion>
9-
<Version>0.10.0</Version>
7+
<AssemblyVersion>0.11.0.0</AssemblyVersion>
8+
<FileVersion>0.11.0.0</FileVersion>
9+
<Version>0.11.0</Version>
1010
<GenerateDocumentation>true</GenerateDocumentation>
1111
<DocumentationFile>bin/docs/Recore.xml</DocumentationFile>
1212
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)