Skip to content

Commit 907e9de

Browse files
authored
- Release v2.2.0
Signed-off-by: CØDE N!NJΔ <najaf.shaikh@gmail.com>
1 parent 3ac2118 commit 907e9de

4 files changed

Lines changed: 22 additions & 15 deletions

File tree

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 2.1.0
1+
next-version: 2.2.0
22
tag-prefix: '[vV]'
33
mode: ContinuousDeployment
44
branches:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Code Shayk
3+
Copyright (c) 2026 Code Shayk
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1-
# <img src="https://github.com/CodeShayk/ApiAggregator/blob/master/Images/api-icon.png" alt="api" style="width:50px;"/> ApiAggregator v2.1.0
1+
# <img src="https://github.com/CodeShayk/ApiAggregator/blob/master/Images/api-icon.png" alt="api" style="width:50px;"/> ApiAggregator v2.2.0
22
[![NuGet version](https://badge.fury.io/nu/ApiAggregator.svg)](https://badge.fury.io/nu/ApiAggregator) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/CodeShayk/ApiAggregator/blob/master/LICENSE.md)
33
[![Master-Build](https://github.com/CodeShayk/ApiAggregator/actions/workflows/Master-Build.yml/badge.svg)](https://github.com/CodeShayk/ApiAggregator/actions/workflows/Master-Build.yml)
44
[![GitHub Release](https://img.shields.io/github/v/release/CodeShayk/ApiAggregator?logo=github&sort=semver)](https://github.com/CodeShayk/ApiAggregator/releases/latest)
55
[![Master-CodeQL](https://github.com/CodeShayk/ApiAggregator/actions/workflows/Master-CodeQL.yml/badge.svg)](https://github.com/CodeShayk/ApiAggregator/actions/workflows/Master-CodeQL.yml)
6+
[![.Net 10.0](https://img.shields.io/badge/.Net-10.0-green)](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
67
[![.Net 9.0](https://img.shields.io/badge/.Net-9.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
8+
[![.Net 6.0](https://img.shields.io/badge/.Net-8.0-green)](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
9+
[![.Net 6.0](https://img.shields.io/badge/.Net-6.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/6.0)
10+
[![.Net 5.0](https://img.shields.io/badge/.Net-5.0-green)](https://dotnet.microsoft.com/en-us/download/dotnet/5.0)
11+
[![.Net Framework 4.6.2](https://img.shields.io/badge/.Net-4.6.2-blue)](https://dotnet.microsoft.com/en-us/download/dotnet-framework/net46)
12+
[![.Net Standard 2.1](https://img.shields.io/badge/.NetStandard-2.1-green)](https://github.com/dotnet/standard/blob/v2.0.0/docs/versions/netstandard2.1.md)
13+
[![.Net Standard 2.0](https://img.shields.io/badge/.NetStandard-2.0-blue)](https://github.com/dotnet/standard/blob/v2.0.0/docs/versions/netstandard2.0.md)
714
--
815
## Introduction
916
### What is ApiAggregator?
@@ -44,9 +51,10 @@ We welcome contributions! Please see our Contributing Guide for details.
4451
- 💻 Code - Submit [pull](https://github.com/CodeShayk/ApiAggregator/pulls) requests
4552

4653
## Version History
47-
The main branch is now on .NET 9.0. The following previous versions are available:
54+
The main branch is now on .NET 10.0. The following previous versions are available:
4855
| Version | Release Notes |
4956
| -------- | --------|
57+
| [`v2.2.0`](https://github.com/CodeShayk/ApiAggregator/tree/v2.2.0) | [Notes](https://github.com/CodeShayk/ApiAggregator/releases/tag/v2.2.0) |
5058
| [`v2.1.0`](https://github.com/CodeShayk/ApiAggregator/tree/v2.1.0) | [Notes](https://github.com/CodeShayk/ApiAggregator/releases/tag/v2.1.0) |
5159
| [`v2.0.0`](https://github.com/CodeShayk/ApiAggregator/tree/v2.0.0) | [Notes](https://github.com/CodeShayk/ApiAggregator/releases/tag/v2.0.0) |
5260
| [`v1.0.0`](https://github.com/CodeShayk/ApiAggregator/tree/v1.0.0) | [Notes](https://github.com/CodeShayk/ApiAggregator/releases/tag/v1.0.0) |

src/ApiAggregator/ApiAggregator.csproj

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net462; netstandard2.0;netstandard2.1;net5.0; net6.0; net8.0; net9.0</TargetFrameworks>
4+
<TargetFrameworks>net462; netstandard2.0;netstandard2.1;net5.0;net6.0;net8.0;net9.0;net10.0</TargetFrameworks>
55
<ImplicitUsings>disable</ImplicitUsings>
66
<Nullable>disable</Nullable>
77
<Title>ApiAggregator</Title>
88
<Authors>CodeShayk</Authors>
99
<Company>CodeShayk</Company>
1010
<Description>.Net utility to combine multiple api requests to return a single aggregated response. </Description>
11-
<PackageIcon>ninja-icon-16.png</PackageIcon>
11+
<PackageIcon>api-icon.png</PackageIcon>
1212
<PackageReadmeFile>README.md</PackageReadmeFile>
1313
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
14-
<Copyright>Copyright (c) 2025 Code Shayk</Copyright>
14+
<Copyright>Copyright (c) 2026 Code Shayk</Copyright>
1515
<RepositoryType></RepositoryType>
1616
<PackageTags>api, aggregator, api-aggregator, utility, api-utility, data-aggregator, api-response, api-response-aggregator</PackageTags>
1717
<IncludeSymbols>True</IncludeSymbols>
@@ -21,21 +21,20 @@
2121
<PackageProjectUrl>https://github.com/CodeShayk/ApiAggregator/wiki</PackageProjectUrl>
2222
<RepositoryUrl>https://github.com/CodeShayk/ApiAggregator</RepositoryUrl>
2323
<PackageReleaseNotes>
24-
v2.1.0 - Targets .Net9.0, net5.0, net6.0, net8.0, .Net Standard 2.0, and .Net Framework 4.6.2. <br />
25-
- Critical fix: Eliminated async/await blocking operations that could cause deadlocks
26-
- Code quality: Fixed syntax consistency issues and improved maintainability
27-
- Performance: Better handling of concurrent API requests and improved thread pool utilization
28-
- Maintains 100% backward compatibility
24+
# ApiAggregator 2.2.0 - No Functional Changes.
25+
## Release Type: Minor Release: Targets .Net 10
26+
**Date**: 2026-03-13
27+
**Version**: 2.2.0
2928
</PackageReleaseNotes>
30-
<Version>2.1.0</Version>
29+
<Version>2.2.0</Version>
3130
</PropertyGroup>
3231

3332
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
3433
<Optimize>True</Optimize>
3534
</PropertyGroup>
3635

3736
<ItemGroup>
38-
<None Include="..\..\Images\ninja-icon-16.png" Link="Misc\ninja-icon-16.png">
37+
<None Include="..\..\Images\api-icon.png">
3938
<Pack>True</Pack>
4039
<PackagePath>\</PackagePath>
4140
</None>

0 commit comments

Comments
 (0)