Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 1.1.1 servicing. #33

Merged
merged 1 commit into from
Dec 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions pkg/IDisposableGenerator/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,9 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>true</IsPackable>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<PackageReleaseNotes>Changes in this release:
- Source generate the attributes (Post Init step).
- Ensure all generated code use file-scoped namespaces and global usings when used in a project with C# 10 or newer enabled.
- Remove roslyn package dependencies from package as those should be resolved from the compiler's copies.
- Moved the generator assembly files from analyzers\cs to analyzers\dotnet\cs.
- Allow multiple WorkItems in the generator.
- Renamed SetNullOnDisposeAttribute to NullOnDisposeAttribute.
- Added Visual Basic source generator.
- Migrated to an Incremental Source Generator (Source Generator V2 APIs).</PackageReleaseNotes>
- Fixed bug in the KeepOpen dispose check in generated code.</PackageReleaseNotes>
<Copyright>Copyright (c) 2021~2022</Copyright>
<!-- Special properties for analyzer packages. -->
<IncludeBuildOutput>false</IncludeBuildOutput>
Expand Down
2 changes: 1 addition & 1 deletion src/IDisposableGenerator.CSharp/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>preview</LangVersion>
<IsPackable>false</IsPackable>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Copyright>Copyright (c) 2021~2022</Copyright>
<!-- Special properties for analyzer packages. -->
<IncludeBuildOutput>false</IncludeBuildOutput>
Expand Down
2 changes: 1 addition & 1 deletion src/IDisposableGenerator.VisualBasic/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>preview</LangVersion>
<IsPackable>false</IsPackable>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Copyright>Copyright (c) 2021~2022</Copyright>
<!-- Special properties for analyzer packages. -->
<IncludeBuildOutput>false</IncludeBuildOutput>
Expand Down
2 changes: 1 addition & 1 deletion src/IDisposableGenerator/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>preview</LangVersion>
<IsPackable>false</IsPackable>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Copyright>Copyright (c) 2021~2022</Copyright>
<!-- Special properties for analyzer packages. -->
<IncludeBuildOutput>false</IncludeBuildOutput>
Expand Down