Skip to content

Commit 4f9d947

Browse files
committed
Nuget package creation - v1.3.0
1 parent d31ce34 commit 4f9d947

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
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.2.0.nupkg"
4+
NUGET_PACKAGE_NAME_VERSION: "QueryDB.1.3.0.nupkg"
55

66
on:
77
workflow_dispatch:

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ All notable changes to this project documented here.
33

44
## [Released]
55

6+
## [1.3.0](https://www.nuget.org/packages/QueryDB/1.3.0) - 2025-07-27
7+
### Changed
8+
- Seal adapter classes for better encapsulation.
9+
- Restrict fetch data to SELECT commands.
10+
- Refactoring DBContext to use switch statement for improved clarity and structure.
11+
612
## [1.2.0](https://www.nuget.org/packages/QueryDB/1.2.0) - 2025-03-04
713
### Added
814
- Asynchronous operations
@@ -11,7 +17,7 @@ All notable changes to this project documented here.
1117
- `ExecuteCommandAsync()`
1218
- `ExecuteTransactionAsync()`
1319
### Changed
14-
- Execute transaction to return transaction outcome and exception details in case of failure instead of logging into console.
20+
- Execute transaction to return transaction outcome and exception details in case of failure instead of logging into console.
1521

1622
## [1.1.0](https://www.nuget.org/packages/QueryDB/1.1.0) - 2025-02-20
1723
### Added

QueryDB/QueryDB.csproj

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,19 @@ Supported Databases:
1111
- Oracle
1212
- PostgreSQL
1313

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.
19-
- Support for Synchronous and Asynchronous operations.</Description>
14+
Key Features:
15+
- Efficient data retrieval using query and command execution.
16+
- Execute scalar queries for single-value results.
17+
- Execute non-query commands.
18+
- Perform multi-command transactions while maintaining atomicity.
19+
- Support for both Synchronous and Asynchronous operations.</Description>
2020
<PackageProjectUrl>https://github.com/abhinavminhas/QueryDB.NET</PackageProjectUrl>
2121
<RepositoryUrl>https://github.com/abhinavminhas/QueryDB.NET</RepositoryUrl>
2222
<RepositoryType>git</RepositoryType>
2323
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2424
<PackageTags>sql, query, rdbms, database, mssql, sqlserver, mysql, oracle, postgresql</PackageTags>
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>
25+
<PackageReleaseNotes>1. Restrict fetch data to SELECT commands.</PackageReleaseNotes>
26+
<Version>1.3.0</Version>
2827
</PropertyGroup>
2928

3029
<ItemGroup>

0 commit comments

Comments
 (0)