Skip to content

Commit

Permalink
v0.610.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanMarr committed Nov 3, 2021
1 parent 3698821 commit 0f85d05
Show file tree
Hide file tree
Showing 8 changed files with 323 additions and 307 deletions.
2 changes: 1 addition & 1 deletion src/Build/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Target.create "Pack" <| fun _ ->
|> List.map (fun pkg -> Shell.Exec(Tools.dotnet, "pack --configuration Release -o nupkg/Release", pkg), pkg)
|> List.iter (fun (code, pkg) -> if code <> 0 then failwith $"Could not build '{pkg}' package.'")

let version = "*.0.600.1.nupkg"
let version = "*.0.610.0.nupkg"

Target.create "Publish" <| fun _ ->
let nugetKey =
Expand Down
8 changes: 6 additions & 2 deletions src/SqlHydra.Npgsql/SqlHydra.Npgsql.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<WarnOn>3390;$(WarnOn)</WarnOn>
<Version>0.600.1</Version>
<Version>0.610.0</Version>
<Authors>Jordan Marr</Authors>
<Description>SqlHydra.Npgsql is a dotnet tool that generates F# records for a PostgreSQL database.</Description>
<PackageTags>F# fsharp data database orm sql</PackageTags>
Expand All @@ -15,7 +15,11 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>
SqlHydra.Query:
Added support for multiple inserts via the `entities` operation.
- (BREAKING) InsertBuilder `entities` operation now takes new `AtLeastOne` type as input.
- Better support for PostgreSQL custom types: "json" and "jsonb"
SqlHydra.*:
- Both tables and now columns can be filtered in generated types.
- Generated columns are now sorted by ordinal.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
8 changes: 6 additions & 2 deletions src/SqlHydra.Query/SqlHydra.Query.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<WarnOn>3390;$(WarnOn)</WarnOn>
<Version>0.600.1</Version>
<Version>0.610.0</Version>
<Description>SqlHydra.Query is an F# query builder powered by SqlKata.Query that supports Sql Server, MySql, PostgreSql, Oracle and Firebird.</Description>
<Authors>Jordan Marr</Authors>
<PackageTags>F# fsharp data database orm sql</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
<PackageReleaseNotes>
SqlHydra.Query:
Added support for multiple inserts via the `entities` operation.
- (BREAKING) InsertBuilder `entities` operation now takes new `AtLeastOne` type as input.
- Better support for PostgreSQL custom types: "json" and "jsonb"
SqlHydra.*:
- Both tables and now columns can be filtered in generated types.
- Generated columns are now sorted by ordinal.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
8 changes: 6 additions & 2 deletions src/SqlHydra.SqlServer/SqlHydra.SqlServer.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Version>0.600.1</Version>
<Version>0.610.0</Version>
<Authors>Jordan Marr</Authors>
<Description>SqlHydra.SqlServer is a dotnet tool that generates F# records for a SQL Server database.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
Expand All @@ -13,7 +13,11 @@
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
<PackageReleaseNotes>
SqlHydra.Query:
Added support for multiple inserts via the `entities` operation.
- (BREAKING) InsertBuilder `entities` operation now takes new `AtLeastOne` type as input.
- Better support for PostgreSQL custom types: "json" and "jsonb"
SqlHydra.*:
- Both tables and now columns can be filtered in generated types.
- Generated columns are now sorted by ordinal.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
8 changes: 6 additions & 2 deletions src/SqlHydra.Sqlite/SqlHydra.Sqlite.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Version>0.600.1</Version>
<Version>0.610.0</Version>
<Authors>Jordan Marr</Authors>
<Description>SqlHydra.Sqlite is a dotnet tool that generates F# records for a SQLite database.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
Expand All @@ -13,7 +13,11 @@
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
<PackageReleaseNotes>
SqlHydra.Query:
Added support for multiple inserts via the `entities` operation.
- (BREAKING) InsertBuilder `entities` operation now takes new `AtLeastOne` type as input.
- Better support for PostgreSQL custom types: "json" and "jsonb"
SqlHydra.*:
- Both tables and now columns can be filtered in generated types.
- Generated columns are now sorted by ordinal.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Tests/Npgsql/AdventureWorks.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This code was generated by `SqlHydra.Npgsql` -- v0.600.0.0.
// This code was generated by `SqlHydra.Npgsql` -- v0.610.0.0.
namespace Npgsql.AdventureWorks

type Column(reader: System.Data.IDataReader, getOrdinal: string -> int, column) =
Expand Down
Loading

0 comments on commit 0f85d05

Please sign in to comment.