Skip to content

releasing v3.0.8 #241

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Percy/Env.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
{
class Env
{
private static string percyBuildID = null;

Check warning on line 9 in Percy/Env.cs

View workflow job for this annotation

GitHub Actions / Test

Cannot convert null literal to non-nullable reference type.

Check warning on line 9 in Percy/Env.cs

View workflow job for this annotation

GitHub Actions / Test

Cannot convert null literal to non-nullable reference type.
private static string percyBuildUrl = null;

Check warning on line 10 in Percy/Env.cs

View workflow job for this annotation

GitHub Actions / Test

Cannot convert null literal to non-nullable reference type.

Check warning on line 10 in Percy/Env.cs

View workflow job for this annotation

GitHub Actions / Test

Cannot convert null literal to non-nullable reference type.
private static string sessionType = null;

Check warning on line 11 in Percy/Env.cs

View workflow job for this annotation

GitHub Actions / Test

Cannot convert null literal to non-nullable reference type.

Check warning on line 11 in Percy/Env.cs

View workflow job for this annotation

GitHub Actions / Test

Cannot convert null literal to non-nullable reference type.

internal static String GetPercyBuildID()
{
Expand Down Expand Up @@ -42,7 +42,7 @@

internal static String GetClientInfo()
{
return "percy-appium-dotnet/3.0.7";
return "percy-appium-dotnet/3.0.8";
}

internal static Boolean ForceFullPage()
Expand Down
2 changes: 1 addition & 1 deletion Percy/Percy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageId>PercyIO.Appium</PackageId>
<Description>An App Percy SDK for Appium WebDriver API .NET Bindings</Description>
<PackageTags>appium;percy;visual;testing</PackageTags>
<Version>3.0.7</Version>
<Version>3.0.8</Version>
<Company>Perceptual Inc</Company>
<Copyright>Copyright Perceptual Inc</Copyright>
<Authors>percy-admin</Authors>
Expand Down
Loading