Skip to content

Commit

Permalink
Version bump to 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fixer-m committed Dec 10, 2022
1 parent d0debc5 commit 3c2a17c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![NuGet](https://img.shields.io/badge/nuget-v0.4.2-green.svg)](https://www.nuget.org/packages/Snowflake.Client/)
[![NuGet](https://img.shields.io/badge/nuget-v0.4.3-green.svg)](https://www.nuget.org/packages/Snowflake.Client/)
[![](https://img.shields.io/nuget/dt/Snowflake.Client.svg)](https://www.nuget.org/packages/Snowflake.Client/)
[![Targets](https://img.shields.io/badge/.NET%20Standard-2.0-green.svg)](https://docs.microsoft.com/en-us/dotnet/standard/net-standard)
[![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0)
Expand Down
2 changes: 1 addition & 1 deletion Snowflake.Client/ChunksDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static ChunksDownloader()
{
var httpClientHandler = new HttpClientHandler
{
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate,
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
};

Client = new HttpClient(httpClientHandler)
Expand Down
8 changes: 4 additions & 4 deletions Snowflake.Client/Model/ClientAppInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ namespace Snowflake.Client.Model
{
public class ClientAppInfo
{
public string DriverName { get; private set; }
public string DriverVersion { get; private set; }
public LoginRequestClientEnv Environment { get; private set; }
public string DriverName { get; }
public string DriverVersion { get; }
public LoginRequestClientEnv Environment { get; }

public ClientAppInfo()
{
Environment = new LoginRequestClientEnv()
{
Application = System.Diagnostics.Process.GetCurrentProcess().ProcessName,
OSVersion = $"({System.Environment.OSVersion.VersionString})",
#if NET46
#if NETFRAMEWORK
NETRuntime = "NETFramework",
NETVersion = "4.6",
#else
Expand Down
6 changes: 3 additions & 3 deletions Snowflake.Client/Snowflake.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.4.2</Version>
<Version>0.4.3</Version>
<Authors>fixer_m</Authors>
<Description>.NET client for Snowflake DB REST API.
Provides straightforward and efficient way to execute SQL queries in Snowflake and automatically map response to your models.</Description>
Expand All @@ -12,8 +12,8 @@ Provides straightforward and efficient way to execute SQL queries in Snowflake a
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/fixer-m/snowflake-db-net-client/</RepositoryUrl>
<PackageTags>snowflake;client;api;wrapper;snowflakedb;rest;restapi</PackageTags>
<AssemblyVersion>0.4.2.0</AssemblyVersion>
<FileVersion>0.4.2.0</FileVersion>
<AssemblyVersion>0.4.3.0</AssemblyVersion>
<FileVersion>0.4.3.0</FileVersion>
<PackageIcon>snowflake_icon.png</PackageIcon>
</PropertyGroup>

Expand Down

0 comments on commit 3c2a17c

Please sign in to comment.