Skip to content

Commit

Permalink
Version bump to v1.4.0 + release notes
Browse files Browse the repository at this point in the history
reformatted nuspec file (tab indent)
  • Loading branch information
timabell committed Feb 15, 2015
1 parent c8bad82 commit c6719aa
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions EfEnumToLookup/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("EfEnumToLookup")]
[assembly: AssemblyCopyright("Copyright © Tim Abell 2014")]
[assembly: AssemblyCopyright("Copyright © Tim Abell and contributors 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -33,6 +33,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]

[assembly:InternalsVisibleTo("EFTests,PublicKey=002400000480000094000000060200000024000052534131000400000100010099a4b9a877a10f75bc4c1a9bf08ee9e21a2df3b9746f2535505b77b3f82971aa8a07caa6cd60b9df6e4b2982ebdb78da960ec1e7688a3b56b6da65e05783ee51f345b1cf0e5a38a02f3cc7c1763d7e469edafc59ef8c21b1a9bcca8548973429577362d992e4a6ed001cb28dc54ecc7ef298e94676bd918fd9e9b521e0cb7ae5")]
58 changes: 29 additions & 29 deletions ef-enum-to-lookup.nuspec
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>ef-enum-to-lookup</id>
<version>1.3.0</version>
<title>Enum Lookup Table Generator for Entity Framework 6</title>
<authors>Tim Abell</authors>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
<projectUrl>http://github.com/timabell/ef-enum-to-lookup</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Entity Framework 6.1 Enum Lookup Table Generator
<metadata>
<id>ef-enum-to-lookup</id>
<version>1.4.0</version>
<title>Enum Lookup Table Generator for Entity Framework 6</title>
<authors>Tim Abell</authors>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
<projectUrl>http://github.com/timabell/ef-enum-to-lookup</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
Entity Framework 6.1 Enum Lookup Table Generator

Creates lookup tables and foreign key constraints based on the enums used in your model.
Creates lookup tables and foreign key constraints based on the enums used in your model.

This makes up for a feature that's missing in Entity Framework 6.1.
This makes up for a feature that's missing in Entity Framework 6.1.

See the project site on github at http://github.com/timabell/ef-enum-to-lookup for usage and more information.
</description>
<summary>Entity Framework 6.1 Enum Lookup Table Generator
See the project site on github at http://github.com/timabell/ef-enum-to-lookup for usage and more information.
</description>
<summary>
Entity Framework 6.1 Enum Lookup Table Generator

Creates lookup tables and foreign key constraints based on the enums used in your model.</summary>
<releaseNotes>* Allow setting a suffix for the generated table names - https://github.com/timabell/ef-enum-to-lookup/issues/13
* Handle apostrophes in names - https://github.com/timabell/ef-enum-to-lookup/issues/9
Note although this fixes a minor sql injection issue, it introduces a new limit on the number
of enum values it can handle in one enum of 1049 (tested on sql server 2012 r2). This is due to use of parameters.
If this is a problem for you please open an issue here https://github.com/timabell/ef-enum-to-lookup/issues
</releaseNotes>
<copyright>Tim Abell</copyright>
<language>en-GB</language>
</metadata>
<files>
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.dll" target="lib\net45\EfEnumToLookup.dll" />
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.pdb" target="lib\net45\EfEnumToLookup.pdb" />
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.XML" target="lib\net45\EfEnumToLookup.XML" />
</files>
Creates lookup tables and foreign key constraints based on the enums used in your model.
</summary>
<releaseNotes>
Added support for table-per-hierarchy (TPH). https://github.com/timabell/ef-enum-to-lookup/issues/18
</releaseNotes>
<copyright>Tim Abell</copyright>
<language>en-GB</language>
</metadata>
<files>
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.dll" target="lib\net45\EfEnumToLookup.dll" />
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.pdb" target="lib\net45\EfEnumToLookup.pdb" />
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.XML" target="lib\net45\EfEnumToLookup.XML" />
</files>
</package>

0 comments on commit c6719aa

Please sign in to comment.