Skip to content

Commit d907145

Browse files
author
infobip-ci
committed
Update to version 2.1.2
1 parent 7778582 commit d907145

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to the library will be documented in this file.
55
The format of the file is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this library adheres to [Semantic Versioning](http://semver.org/) as mentioned in [README.md][readme] file.
77

8+
## [ [2.1.2](https://github.com/infobip/infobip-api-csharp-client/releases/tag/2.1.2) ] - 2023-02-20
9+
### Fixed
10+
- README example (https://github.com/infobip/infobip-api-csharp-client/pull/13)
11+
812
## [ [2.1.1](https://github.com/infobip/infobip-api-csharp-client/releases/tag/2.1.1) ] - 2022-12-29
913

1014
### Changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ Within Visual Studio, use the Package Manager UI to browse for `Infobip.Api.Clie
3737
#### Package Manager Console
3838
Alternatively, also within Visual Studio, use the Package Manager Console command:
3939

40-
Install-Package Infobip.Api.Client -Version 2.1.1
40+
Install-Package Infobip.Api.Client -Version 2.1.2
4141

4242
#### .NET CLI
4343
If you are used to .NET CLI, the following command is going to be sufficient for you:
4444

45-
dotnet add package Infobip.Api.Client --version 2.1.1
45+
dotnet add package Infobip.Api.Client --version 2.1.2
4646

4747
### Package reference
4848
Including the package directly into project file is also valid option.
4949

50-
<PackageReference Include="Infobip.Api.Client" Version="2.1.1" />
50+
<PackageReference Include="Infobip.Api.Client" Version="2.1.2" />
5151

5252
## Quickstart
5353

@@ -154,7 +154,7 @@ Each request will return a batch of delivery reports - only once.
154154
var smsDeliveryResult = sendSmsApi.GetOutboundSmsMessageDeliveryReports(bulkId, messageId, numberOfReportsLimit);
155155
foreach (var smsReport in smsDeliveryResult.Results)
156156
{
157-
Console.WriteLine($"{smsReport.MessageId} - {smsReport.Status.Name}")
157+
Console.WriteLine($"{smsReport.MessageId} - {smsReport.Status.Name}");
158158
}
159159
```
160160

src/Infobip.Api.Client/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static string ToDebugReport()
5454
report += " OS: " + System.Environment.OSVersion + "\n";
5555
report += " .NET Framework Version: " + System.Environment.Version + "\n";
5656
report += " Version of the API: 1.0.278\n";
57-
report += " SDK Package Version: 2.1.1\n";
57+
report += " SDK Package Version: 2.1.2\n";
5858

5959
return report;
6060
}
@@ -105,7 +105,7 @@ public static IReadableConfiguration MergeConfigurations(IReadableConfiguration
105105
/// Version of the package.
106106
/// </summary>
107107
/// <value>Version of the package.</value>
108-
public const string Version = "2.1.1";
108+
public const string Version = "2.1.2";
109109

110110
/// <summary>
111111
/// Identifier for ISO 8601 DateTime Format
@@ -157,7 +157,7 @@ public static IReadableConfiguration MergeConfigurations(IReadableConfiguration
157157
public Configuration()
158158
{
159159
Proxy = null;
160-
UserAgent = "infobip-api-client-csharp/2.1.1";
160+
UserAgent = "infobip-api-client-csharp/2.1.2";
161161
BasePath = "http://localhost";
162162
DefaultHeaders = new ConcurrentDictionary<string, string>();
163163
ApiKey = null;

src/Infobip.Api.Client/Infobip.Api.Client.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
<Description>C# library for consuming Infobip's API</Description>
1313
<Copyright>Copyright @ Infobip ltd. All rights reserved.</Copyright>
1414
<RootNamespace>Infobip.Api.Client</RootNamespace>
15-
<Version>2.1.1</Version>
16-
<FileVersion>2.1.1</FileVersion>
17-
<AssemblyVersion>2.1.1</AssemblyVersion>
15+
<Version>2.1.2</Version>
16+
<FileVersion>2.1.2</FileVersion>
17+
<AssemblyVersion>2.1.2</AssemblyVersion>
1818
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Infobip.Api.Client.xml</DocumentationFile>
1919
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2020
<RepositoryUrl>https://github.com/infobip/infobip-api-csharp-client.git</RepositoryUrl>

0 commit comments

Comments
 (0)