Skip to content

Commit a9805ab

Browse files
committed
Nuget package creation - v1.2.0
1 parent eff1800 commit a9805ab

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
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.1.0.nupkg"
4+
NUGET_PACKAGE_NAME_VERSION: "QueryDB.1.2.0.nupkg"
55

66
on:
77
workflow_dispatch:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ All notable changes to this project documented here.
33

44
## [Released]
55

6+
## [1.2.0](https://www.nuget.org/packages/QueryDB/1.2.0) - 2025-03-04
7+
### Added
8+
- Asynchronous operations
9+
- `FetchDataAsync()`
10+
- `ExecuteScalarAsync()`
11+
- `ExecuteCommandAsync()`
12+
- `ExecuteTransactionAsync()`
13+
### Changed
14+
- Execute transaction to return transaction outcome and exception details in case of failure instead of logging into console.
15+
616
## [1.1.0](https://www.nuget.org/packages/QueryDB/1.1.0) - 2025-02-20
717
### Added
818
- Execute scalar queries (returning a single value).

QueryDB/QueryDB.csproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ Features:
1515
- Retrieve data from the database.
1616
- Execute scalar queries (returning a single value).
1717
- Execute non-query database commands.
18-
- Execute transactions while maintaining atomicity.</Description>
18+
- Execute transactions while maintaining atomicity.
19+
- Support for Synchronous and Asynchronous operations.</Description>
1920
<PackageProjectUrl>https://github.com/abhinavminhas/QueryDB.NET</PackageProjectUrl>
2021
<RepositoryUrl>https://github.com/abhinavminhas/QueryDB.NET</RepositoryUrl>
2122
<RepositoryType>git</RepositoryType>
2223
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2324
<PackageTags>sql, query, rdbms, database, mssql, sqlserver, mysql, oracle, postgresql</PackageTags>
24-
<PackageReleaseNotes>1. Execute scalar queries (returning a single value).</PackageReleaseNotes>
25-
<Version>1.1.0</Version>
25+
<PackageReleaseNotes>1. Asynchronous operations.
26+
2. Execute transaction to return transaction outcome and exception details in case of failures.</PackageReleaseNotes>
27+
<Version>1.2.0</Version>
2628
</PropertyGroup>
2729

2830
<ItemGroup>

0 commit comments

Comments
 (0)