Skip to content

Commit 702ddb7

Browse files
authored
Merge pull request #16 from messente/travis
release version 4.1.1
2 parents 074426e + fad4bbe commit 702ddb7

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

.travis.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
language: csharp
2+
mono: none
3+
dotnet: 8.0
4+
os: windows
5+
6+
branches:
7+
only:
8+
- main
9+
10+
install:
11+
- dotnet restore
12+
13+
script:
14+
- dotnet build -c Release
15+
- dotnet test -c Release
16+
17+
after_success:
18+
- dotnet pack ./src/com.Messente.Api/com.Messente.Api.csproj -o ./output -c Release --no-build
19+
20+
deploy:
21+
provider: script
22+
script: dotnet nuget push ./output/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
23+
on:
24+
tags: true

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Messente API Library
22

33
- Messente API version: 2.0.0
4-
- C# package version: 4.1.0
4+
- C# package version: 4.1.1
55

66
[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
77

@@ -11,11 +11,11 @@ Install Messente API library via NuGet Package Manager or .NET CLI.
1111

1212
### Package Manager
1313

14-
`Install-Package com.Messente.Api -Version 4.1.0`
14+
`Install-Package com.Messente.Api -Version 4.1.1`
1515

1616
### .NET CLI
1717

18-
`dotnet add package com.Messente.Api --version 4.1.0`
18+
`dotnet add package com.Messente.Api --version 4.1.1`
1919

2020
## Features
2121

src/com.Messente.Api/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class Configuration : IReadableConfiguration
3434
/// Version of the package.
3535
/// </summary>
3636
/// <value>Version of the package.</value>
37-
public const string Version = "4.1.0";
37+
public const string Version = "4.1.1";
3838

3939
/// <summary>
4040
/// Identifier for ISO 8601 DateTime Format
@@ -118,7 +118,7 @@ public class Configuration : IReadableConfiguration
118118
public Configuration()
119119
{
120120
Proxy = null;
121-
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/4.1.0/csharp");
121+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/4.1.1/csharp");
122122
BasePath = "https://api.messente.com/v1";
123123
DefaultHeaders = new ConcurrentDictionary<string, string>();
124124
ApiKey = new ConcurrentDictionary<string, string>();
@@ -613,7 +613,7 @@ public static string ToDebugReport()
613613
report += " OS: " + System.Environment.OSVersion + "\n";
614614
report += " .NET Framework Version: " + System.Environment.Version + "\n";
615615
report += " Version of the API: 2.0.0\n";
616-
report += " SDK Package Version: 4.1.0\n";
616+
report += " SDK Package Version: 4.1.1\n";
617617

618618
return report;
619619
}

src/com.Messente.Api/com.Messente.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>Send and receive SMS, Viber, Telegram and WhatsApp messages, blacklist phone numbers to make sure you&#39;re not sending any unwanted messages, manage contacts and groups.</Description>
1313
<Copyright>Messente</Copyright>
1414
<RootNamespace>com.Messente.Api</RootNamespace>
15-
<Version>4.1.0</Version>
15+
<Version>4.1.1</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\com.Messente.Api.xml</DocumentationFile>
1717
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>

0 commit comments

Comments
 (0)