Skip to content

Commit 0efcc35

Browse files
authored
InMemory package bump and additional JSON config (#11)
1 parent 642ef09 commit 0efcc35

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

src/MammothCache.InMemory/MammothCache.InMemory.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<PackageReadmeFile>README.md</PackageReadmeFile>
88
</PropertyGroup>
99
<PropertyGroup>
10-
<AssemblyVersion>1.0.0.0</AssemblyVersion>
11-
<FileVersion>1.0.0.0</FileVersion>
12-
<PackageVersion>1.0.0.0</PackageVersion>
10+
<AssemblyVersion>1.0.1.0</AssemblyVersion>
11+
<FileVersion>1.0.1.0</FileVersion>
12+
<PackageVersion>1.0.1.0</PackageVersion>
1313
<PackageIcon>logo.png</PackageIcon>
1414
</PropertyGroup>
1515
<PropertyGroup>
@@ -18,7 +18,7 @@
1818
<Company>Dime Software</Company>
1919
<Product>Mammoth Cache</Product>
2020
<Description>A caching library that decorates the InMemory cache provider.</Description>
21-
<Copyright>Copyright © 2023</Copyright>
21+
<Copyright>Copyright © 2024</Copyright>
2222
<PackageProjectUrl>https://github.com/dimesoftware/mammoth-cache</PackageProjectUrl>
2323
<PackageIconUrl>https://cdn.dime-software.com/dime-software/logo-shape.png</PackageIconUrl>
2424
<RepositoryUrl>https://github.com/dimesoftware/mammoth-cache</RepositoryUrl>
@@ -29,7 +29,7 @@
2929
</PropertyGroup>
3030

3131
<ItemGroup>
32-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
32+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
3333
</ItemGroup>
3434

3535
<ItemGroup>

src/MammothCache.Redis/MammothCache.Redis.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<PackageIcon>logo.png</PackageIcon>
1010
</PropertyGroup>
1111
<PropertyGroup>
12-
<AssemblyVersion>1.0.1.0</AssemblyVersion>
13-
<FileVersion>1.0.1.0</FileVersion>
14-
<PackageVersion>1.0.1</PackageVersion>
12+
<AssemblyVersion>1.0.2.0</AssemblyVersion>
13+
<FileVersion>1.0.2.0</FileVersion>
14+
<PackageVersion>1.0.2</PackageVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>
1717
<TargetFrameworks>net8.0</TargetFrameworks>

src/MammothCache.Redis/RedisCacheDecorator.Set.cs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public static JsonSerializerOptions SerializationOptions
1515
{
1616
ReferenceHandler = ReferenceHandler.IgnoreCycles,
1717
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
18+
WriteIndented = false
1819
};
1920

2021
return opts;

0 commit comments

Comments
 (0)