Skip to content

Commit 8f7f0f7

Browse files
authored
Merge pull request #309 from json-api-dotnet/jaredcnance-patch-1
make attr constructor public
2 parents 8b0c3fd + 55407f2 commit 8f7f0f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/JsonApiDotNetCore/JsonApiDotNetCore.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<VersionPrefix>2.3.0</VersionPrefix>
3+
<VersionPrefix>2.3.1</VersionPrefix>
44
<TargetFrameworks>$(NetStandardVersion)</TargetFrameworks>
55
<AssemblyName>JsonApiDotNetCore</AssemblyName>
66
<PackageId>JsonApiDotNetCore</PackageId>

src/JsonApiDotNetCore/Models/AttrAttribute.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public AttrAttribute(string publicName, bool isImmutable = false, bool isFiltera
3333
IsSortable = isSortable;
3434
}
3535

36-
internal AttrAttribute(string publicName, string internalName, bool isImmutable = false)
36+
public AttrAttribute(string publicName, string internalName, bool isImmutable = false)
3737
{
3838
PublicAttributeName = publicName;
3939
InternalAttributeName = internalName;

0 commit comments

Comments
 (0)