Skip to content

Commit

Permalink
Bumped version v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustVX committed Aug 15, 2023
1 parent 6ed32fc commit c3a0915
Show file tree
Hide file tree
Showing 3 changed files with 5 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 @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup Condition=" '$(Configuration)'=='Release' ">
<PackageReference Include="FaustVX.PrimaryParameter.SG" Version="1.0.0" />
<PackageReference Include="FaustVX.PrimaryParameter.SG" Version="1.1.0" />
</ItemGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
Expand Down
2 changes: 1 addition & 1 deletion PrimaryParameter.SG/PrimaryParameter.SG.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<PropertyGroup>
<PackageId>FaustVX.PrimaryParameter.SG</PackageId>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
<Authors>FaustVX</Authors>
<RepositoryUrl>https://github.com/FaustVX/PrimaryParameter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ partial class C([Field(Name = "_a", AssignFormat = "{0}.ToString()", Type = type
ref partial struct Ref([RefField(IsReadonlyRef = false, IsRefReadonly = false), RefField(Name = nameof(Ref.I), Scope = "public")]int i)
{
# region Generated members
private ref int _i = ref Unsafe.AsRef(in i); // Bug in the compiler (https://github.com/dotnet/roslyn/issues/67371)
public readonly ref readonly int I = ref Unsafe.AsRef(in i); // Bug in the compiler (https://github.com/dotnet/roslyn/issues/67371)
private ref int _i = ref i;
public readonly ref readonly int I = ref i;
# endregion
}
```
Expand Down Expand Up @@ -80,6 +80,7 @@ You can type as many attributes as you want on a single parameter.
## Versions
|Version|Date|Comments|
|-------|----|--------|
|v1.1.0|15/08/2023|[dotnet/roslyn#67371](https://github.com/dotnet/roslyn/issues/67371) fixed</br>(related to `v0.4.6`)|
|v1.0.0|01/08/2023|Added code-fixes|
|v0.4.7|16/07/2023|Don't error on `nameof` access or inside the same argument list usage|
|v0.4.6.1|16/07/2023|Fix typos in Readme.md|
Expand Down

0 comments on commit c3a0915

Please sign in to comment.