Skip to content

Commit f8f00ff

Browse files
Updated README, CHANGELOG & versions.
1 parent a7cd9c6 commit f8f00ff

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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.2](https://github.com/infobip/infobip-api-csharp-client/releases/tag/v4.0.2) ] - 2025-12-08
9+
10+
### Added
11+
- Custom Enum Converter for System.Text.Json (see ###fixed for more information).
12+
13+
### Changed
14+
- Refactored tests: removed unused code, aligned some variable naming, removed unused imports.
15+
16+
### Fixed
17+
- Enum deserialization using System.Text.Json now correctly maps Json string values to enums using values defined by [EnumMember].
18+
819
## [ [4.0.1](https://github.com/infobip/infobip-api-csharp-client/releases/tag/v4.0.1) ] - 2025-12-03
920

1021
### Changed

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.1
40+
Install-Package Infobip.Api.Client -Version 4.0.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 4.0.1
45+
dotnet add package Infobip.Api.Client --version 4.0.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="4.0.1" />
50+
<PackageReference Include="Infobip.Api.Client" Version="4.0.2" />
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.1";
44+
public const string Version = "4.0.2";
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.1";
57+
UserAgent = "infobip-api-client-csharp/4.0.2";
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.1</Version>
16-
<FileVersion>4.0.1</FileVersion>
17-
<AssemblyVersion>4.0.1</AssemblyVersion>
15+
<Version>4.0.2</Version>
16+
<FileVersion>4.0.2</FileVersion>
17+
<AssemblyVersion>4.0.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)