Skip to content

Commit 07f4c16

Browse files
committed
Nuget package creation - v1.1.0
1 parent c1ffd61 commit 07f4c16

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

.github/workflows/publish-nuget-Package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Publish Nuget Package
22

33
env:
4-
NUGET_PACKAGE_NAME_VERSION: "QueryDB.1.0.0.nupkg"
4+
NUGET_PACKAGE_NAME_VERSION: "QueryDB.1.1.0.nupkg"
55

66
on:
77
workflow_dispatch:

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ All notable changes to this project documented here.
88
- QueryDB framework for simplified querying and executing transactions across multiple database systems.
99
- Retrieve data from database.
1010
- Execute database commands.
11-
- Execute transactions while maintaining atomicity.
11+
- Execute transactions while maintaining atomicity.
12+
13+
## [1.1.0](https://www.nuget.org/packages/QueryDB/1.1.0) - 2025-02-20
14+
### Added
15+
- Execute scalar queries (returning a single value).

QueryDB/QueryDB.csproj

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@ Supported Databases:
99
- MSSQL
1010
- MySQL
1111
- Oracle
12-
- PostgreSQL</Description>
12+
- PostgreSQL
13+
14+
Features:
15+
- Retrieve data from the database.
16+
- Execute scalar queries (returning a single value).
17+
- Execute non-query database commands.
18+
- Execute transactions while maintaining atomicity.</Description>
1319
<PackageProjectUrl>https://github.com/abhinavminhas/QueryDB.NET</PackageProjectUrl>
1420
<RepositoryUrl>https://github.com/abhinavminhas/QueryDB.NET</RepositoryUrl>
1521
<RepositoryType>git</RepositoryType>
1622
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1723
<PackageTags>sql, query, rdbms, database, mssql, sqlserver, mysql, oracle, postgresql</PackageTags>
18-
<PackageReleaseNotes>QueryDB framework for simplified querying and executing transactions across multiple database systems.
19-
- Retrieve data from database.
20-
- Execute database commands.
21-
- Execute transactions while maintaining atomicity.</PackageReleaseNotes>
24+
<PackageReleaseNotes>1. Execute scalar queries (returning a single value).</PackageReleaseNotes>
25+
<Version>1.1.0</Version>
2226
</PropertyGroup>
2327

2428
<ItemGroup>

0 commit comments

Comments
 (0)