Skip to content

Commit 6471ad3

Browse files
Update configuration, README & CHANGELOG.
1 parent 966a008 commit 6471ad3

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
## [ [4.0.1](https://github.com/infobip/infobip-api-csharp-client/releases/tag/v4.0.1) ] - 2025-12-01
9+
10+
### Fixed
11+
- Error parsing Enums for the query parameter (https://github.com/infobip/infobip-api-csharp-client/issues/49)
12+
- Tests are now culture-invariant: their results should no longer depend on the system's locale/culture settings.
13+
814
## [ [4.0.0](https://github.com/infobip/infobip-api-csharp-client/releases/tag/v4.0.0) ] - 2025-02-28
915

1016
🎉 **NEW Major Version of `Infobip.Api.Client`.**

README.md

Lines changed: 3 additions & 3 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 4.0.0
40+
Install-Package Infobip.Api.Client -Version 4.0.1
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 4.0.0
45+
dotnet add package Infobip.Api.Client --version 4.0.1
4646

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

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

5252
## Quickstart
5353

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class Configuration : IReadableConfiguration
4141
/// Version of the package.
4242
/// </summary>
4343
/// <value>Version of the package.</value>
44-
public const string Version = "4.0.0";
44+
public const string Version = "4.0.1";
4545

4646
private string _dateTimeFormat = Iso8601DateTimeFormat;
4747

@@ -54,7 +54,7 @@ public class Configuration : IReadableConfiguration
5454
public Configuration()
5555
{
5656
Proxy = null;
57-
UserAgent = "infobip-api-client-csharp/4.0.0";
57+
UserAgent = "infobip-api-client-csharp/4.0.1";
5858
BasePath = "http://localhost";
5959
DefaultHeaders = new ConcurrentDictionary<string, string>();
6060

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&#39;s API</Description>
1313
<Copyright>Copyright @ Infobip ltd. All rights reserved.</Copyright>
1414
<RootNamespace>Infobip.Api.Client</RootNamespace>
15-
<Version>4.0.0</Version>
16-
<FileVersion>4.0.0</FileVersion>
17-
<AssemblyVersion>4.0.0</AssemblyVersion>
15+
<Version>4.0.1</Version>
16+
<FileVersion>4.0.1</FileVersion>
17+
<AssemblyVersion>4.0.1</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)