Skip to content

Commit a344259

Browse files
author
nadavfa
committed
breaking changes -
changing [Serializable] to [PSerializable] in classs: CacheAttribute and CacheListAttribute. those changes were published on versions 5.0.3(deprecated) and 5.0.4(deprecated) as patch changes, but should have been marked as major.
1 parent e9d196c commit a344259

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

AopCaching/AopCaching.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<AssemblyName>PubComp.Caching.AopCaching</AssemblyName>
66
<RootNamespace>PubComp.Caching.AopCaching</RootNamespace>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
8-
<Version>5.0.5</Version>
9-
<AssemblyVersion>5.0.0.0</AssemblyVersion>
10-
<FileVersion>5.0.5.0</FileVersion>
8+
<Version>6.0.0</Version>
9+
<AssemblyVersion>6.0.0.0</AssemblyVersion>
10+
<FileVersion>6.0.0.0</FileVersion>
1111
</PropertyGroup>
1212
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1313
<NoWarn>1701;1702;1591</NoWarn>

AopCaching/CacheAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace PubComp.Caching.AopCaching
1313
{
14-
[Serializable]
14+
[PSerializable]
1515
public class CacheAttribute : MethodInterceptionAspect
1616
{
1717
private string cacheName;

AopCaching/CacheListAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace PubComp.Caching.AopCaching
1414
{
15-
[Serializable]
15+
[PSerializable]
1616
public class CacheListAttribute : MethodInterceptionAspect
1717
{
1818
private string cacheName;

0 commit comments

Comments
 (0)