Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
0x1000000 committed Sep 16, 2024
1 parent 75f6dc2 commit 318da0e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.1.1
### Bugfix
- Missed **CreateNullableStringColumn** in **DerivedTableBase**.
- Table descriptor generation **Unknown default value type: Bool** _(When a boolean column has a default value)_.

# 1.1.0
### New Features
- Dynamic table metadata creation/modification with ```SqTable``` class
Expand Down
6 changes: 3 additions & 3 deletions SqExpress/SqExpress.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Authors>Dmitry Tikhonov</Authors>
<Company />
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Summary>SqExpress is a SQL query builder that allows you to create SQL expressions directly in C# code with strong typing and IntelliSense.</Summary>
<PackageReleaseNotes>https://github.com/0x1000000/SqExpress/blob/main/CHANGELOG.md</PackageReleaseNotes>
<Description>SqExpress is a SQL query builder that allows you to create SQL expressions directly in C# code with strong typing and IntelliSense (without LINQ!). The library provides a generic SQL syntax tree with export to MS T-SQL, PostgreSQL, and MySQL text. It includes polyfills to compensate for features lacking in certain databases, such as the "MERGE" command. It also provides a set of builders and operators that will help you build complex SQL expressions.
Expand All @@ -26,8 +26,8 @@ Here’s an article that explains the library principles: [“Syntax Tree and Al
<Copyright>Dmitry Tikhonov</Copyright>
<PackageProjectUrl>https://github.com/0x1000000/SqExpress</PackageProjectUrl>
<PackageTags>query postgresql tsql mysql builder mssql dataaccess</PackageTags>
<AssemblyVersion>1.1.0</AssemblyVersion>
<FileVersion>1.1.0</FileVersion>
<AssemblyVersion>1.1.1</AssemblyVersion>
<FileVersion>1.1.1</FileVersion>
<AssemblyOriginatorKeyFile>..\SqExpress.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
Expand Down

0 comments on commit 318da0e

Please sign in to comment.