Skip to content

Commit

Permalink
v4.2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msawczyn committed Aug 16, 2022
1 parent ceb7de6 commit 3ae02cd
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 17 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,15 @@ to <a href="https://www.jetbrains.com/?from=EFDesigner"><img src="https://msawcz

### Change Log

4.2.0
4.2.1
- Added support for EFCore7
- Added ability to import EFCore7 assemblies
- Added ability to use property types not available in the select list, along with a global option enabling this feature in Tools/Options/Entity Framework Visual Editor (see https://github.com/msawczyn/EFDesigner2022/issues/28)
- Added support for DateOnly and TimeOnly types in EFCore 6+
- Added ability to specify decimal precision in EFCore5+ projects
- Fix for View->Other Windows->Entity Model Explorer not working (see https://github.com/msawczyn/EFDesigner2022/issues/29)
- Fix error in code generation template for EFCore5+ projects

4.2.0
- Added ability to import EFCore6 assemblies
- Added database default values to properties (see https://github.com/msawczyn/EFDesigner2022/issues/15)
Expand Down
9 changes: 9 additions & 0 deletions VSMarketplace blurb.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,15 @@ may be a bugfix or two your customized templates don't have. But, hey ... if you

**ChangeLog**

**4.2.1**
- **[NEW]** Added support for EFCore7
- **[NEW]** Added ability to import EFCore7 assemblies
- **[NEW]** Added ability to use property types not available in the select list, along with a global option enabling this feature in Tools/Options/Entity Framework Visual Editor (see https://github.com/msawczyn/EFDesigner2022/issues/28)
- **[NEW]** Added support for DateOnly and TimeOnly types in EFCore 6+
- **[NEW]** Added ability to specify decimal precision in EFCore5+ projects
- Fix for View->Other Windows->Entity Model Explorer not working (see https://github.com/msawczyn/EFDesigner2022/issues/29)
- Fix error in code generation template for EFCore5+ projects

**4.2.0**
- **[NEW]** Added ability to import EFCore6 assemblies
- **[NEW]** Added database default values to properties (see https://github.com/msawczyn/EFDesigner2022/issues/15)
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
4.3.0 (next version)
4.2.1
- Added support for EFCore7
- Added ability to import EFCore7 assemblies
- Added ability to use property types not available in the select list, along with a global option enabling this feature in Tools/Options/Entity Framework Visual Editor (see https://github.com/msawczyn/EFDesigner2022/issues/28)
Expand Down
Binary file modified dist/Sawczyn.EFDesigner.EFModel.DslPackage.vsix
Binary file not shown.
5 changes: 2 additions & 3 deletions src/Utilities/EF6Parser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@

[assembly : ComVisible(false)]

[assembly : AssemblyVersion("3.0.5")]
[assembly : AssemblyFileVersion("3.0.5")]
[assembly : ReliabilityContract(Consistency.MayCorruptProcess, Cer.None)]
[assembly : AssemblyVersion("4.2.1.0")]
[assembly : AssemblyFileVersion("4.2.1.0")]
5 changes: 2 additions & 3 deletions src/Utilities/EFCore2Parser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@

[assembly : ComVisible(false)]

[assembly : AssemblyVersion("3.0.5")]
[assembly : AssemblyFileVersion("3.0.5")]
[assembly : ReliabilityContract(Consistency.MayCorruptProcess, Cer.None)]
[assembly : AssemblyVersion("4.2.1.0")]
[assembly : AssemblyFileVersion("4.2.1.0")]
5 changes: 2 additions & 3 deletions src/Utilities/EFCore3Parser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@

[assembly : ComVisible(false)]

[assembly : AssemblyVersion("3.0.5")]
[assembly : AssemblyFileVersion("3.0.5")]
[assembly : ReliabilityContract(Consistency.MayCorruptProcess, Cer.None)]
[assembly : AssemblyVersion("4.2.1.0")]
[assembly : AssemblyFileVersion("4.2.1.0")]
4 changes: 2 additions & 2 deletions src/Utilities/EFCore5Parser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@

[assembly : ComVisible(false)]

[assembly : AssemblyVersion("3.0.5")]
[assembly : AssemblyFileVersion("3.0.5")]
[assembly : AssemblyVersion("4.2.1.0")]
[assembly : AssemblyFileVersion("4.2.1.0")]
4 changes: 2 additions & 2 deletions src/Utilities/EFCore6Parser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@

[assembly : ComVisible(false)]

[assembly : AssemblyVersion("3.0.5")]
[assembly : AssemblyFileVersion("3.0.5")]
[assembly : AssemblyVersion("4.2.1.0")]
[assembly : AssemblyFileVersion("4.2.1.0")]
4 changes: 2 additions & 2 deletions src/Utilities/EFCore7Parser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@

[assembly : ComVisible(false)]

[assembly : AssemblyVersion("3.0.5")]
[assembly : AssemblyFileVersion("3.0.5")]
[assembly : AssemblyVersion("4.2.1.0")]
[assembly : AssemblyFileVersion("4.2.1.0")]

0 comments on commit 3ae02cd

Please sign in to comment.