Skip to content

Commit

Permalink
Bumped version v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustVX committed Nov 17, 2024
1 parent b37622f commit 3d9a32d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ConsoleApp1/ConsoleApp1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FaustVX.PrimaryParameter.SG" Version="1.8.0" ReferenceOutputAssembly="false" PrivateAssets="All" />
<PackageReference Include="FaustVX.PrimaryParameter.SG" Version="1.8.1" ReferenceOutputAssembly="false" PrivateAssets="All" />
<!-- <ProjectReference Include="..\PrimaryParameter.SG\PrimaryParameter.SG.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" PrivateAssets="All" /> -->
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ sealed class PropertyAttribute : Attribute
public string Scope { get; init; }
public string Summary { get; init; }
public bool WithoutBackingStorage { get; init; }
public bool IsPartial { get; init; }
}
}
2 changes: 1 addition & 1 deletion PrimaryParameter.SG/PrimaryParameter.SG.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<PropertyGroup>
<PackageId>FaustVX.PrimaryParameter.SG</PackageId>
<Version>1.8.1-beta2</Version>
<Version>1.8.1</Version>
<Authors>FaustVX</Authors>
<RepositoryUrl>https://github.com/FaustVX/PrimaryParameter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ You can type as many attributes as you want on a single parameter (Except for `D
||`Type`|To change the type for that property|same type as parameter|
||`Summary`|The `<summary>` documentation tag|`null`|
||`WithoutBackingStorage`|Generate the body of the accessors, without a backing storage|`false`|
||`IsPartial`|Amend the `partial` modifier (you **_must_** specify the implementing part)|`false`|
|`DoNotUse`|`AllowInMemberInit`|Change to allow the use of parameter in member initializer|`true`|

## Reported Diagnostics
Expand Down Expand Up @@ -103,6 +102,7 @@ You can type as many attributes as you want on a single parameter (Except for `D
## Versions
|Version|Date|Comments|
|-------|----|--------|
|v1.8.1|17/11/2024|Automatically detect `partial` properties|
|v1.8.0|15/11/2024|Added `IsPartial` for `Property`|
|v1.7.0|23/06/2024|Added `WithoutBackingStorage` for `Property`|
|v1.6.0|22/06/2024|Fix a bug: accept arrays|
Expand Down

0 comments on commit 3d9a32d

Please sign in to comment.