Skip to content

Commit 3c2a17c

Browse files
committed
Version bump to 0.4.3
1 parent d0debc5 commit 3c2a17c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![NuGet](https://img.shields.io/badge/nuget-v0.4.2-green.svg)](https://www.nuget.org/packages/Snowflake.Client/)
1+
[![NuGet](https://img.shields.io/badge/nuget-v0.4.3-green.svg)](https://www.nuget.org/packages/Snowflake.Client/)
22
[![](https://img.shields.io/nuget/dt/Snowflake.Client.svg)](https://www.nuget.org/packages/Snowflake.Client/)
33
[![Targets](https://img.shields.io/badge/.NET%20Standard-2.0-green.svg)](https://docs.microsoft.com/en-us/dotnet/standard/net-standard)
44
[![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0)

Snowflake.Client/ChunksDownloader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static ChunksDownloader()
2424
{
2525
var httpClientHandler = new HttpClientHandler
2626
{
27-
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate,
27+
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
2828
};
2929

3030
Client = new HttpClient(httpClientHandler)

Snowflake.Client/Model/ClientAppInfo.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ namespace Snowflake.Client.Model
44
{
55
public class ClientAppInfo
66
{
7-
public string DriverName { get; private set; }
8-
public string DriverVersion { get; private set; }
9-
public LoginRequestClientEnv Environment { get; private set; }
7+
public string DriverName { get; }
8+
public string DriverVersion { get; }
9+
public LoginRequestClientEnv Environment { get; }
1010

1111
public ClientAppInfo()
1212
{
1313
Environment = new LoginRequestClientEnv()
1414
{
1515
Application = System.Diagnostics.Process.GetCurrentProcess().ProcessName,
1616
OSVersion = $"({System.Environment.OSVersion.VersionString})",
17-
#if NET46
17+
#if NETFRAMEWORK
1818
NETRuntime = "NETFramework",
1919
NETVersion = "4.6",
2020
#else

Snowflake.Client/Snowflake.Client.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<Version>0.4.2</Version>
6+
<Version>0.4.3</Version>
77
<Authors>fixer_m</Authors>
88
<Description>.NET client for Snowflake DB REST API.
99
Provides straightforward and efficient way to execute SQL queries in Snowflake and automatically map response to your models.</Description>
@@ -12,8 +12,8 @@ Provides straightforward and efficient way to execute SQL queries in Snowflake a
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1313
<RepositoryUrl>https://github.com/fixer-m/snowflake-db-net-client/</RepositoryUrl>
1414
<PackageTags>snowflake;client;api;wrapper;snowflakedb;rest;restapi</PackageTags>
15-
<AssemblyVersion>0.4.2.0</AssemblyVersion>
16-
<FileVersion>0.4.2.0</FileVersion>
15+
<AssemblyVersion>0.4.3.0</AssemblyVersion>
16+
<FileVersion>0.4.3.0</FileVersion>
1717
<PackageIcon>snowflake_icon.png</PackageIcon>
1818
</PropertyGroup>
1919

0 commit comments

Comments
 (0)