Skip to content

Commit

Permalink
Update packages and owners
Browse files Browse the repository at this point in the history
  • Loading branch information
russcam committed May 8, 2024
1 parent 5f5950e commit 396f91a
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ charset = utf-8
indent_style = tab
indent_size = 4

[*.{md,markdown,json,js,csproj,fsproj,targets,targets,props,xml}]
[*.{md,markdown,json,js,csproj,fsproj,targets,targets,props,xml,yml}]
indent_style = space
indent_size = 2

Expand Down
10 changes: 5 additions & 5 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Authors>Russ Cam</Authors>
<Copyright>Russ Cam</Copyright>
<Authors>Search Pioneer</Authors>
<Copyright>Search Pioneer</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/russcam/pinecone-dotnet-client</RepositoryUrl>
<PackageProjectUrl>https://github.com/russcam/pinecone-dotnet-client</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/russcam/pinecone-dotnet-client/releases</PackageReleaseNotes>
<RepositoryUrl>https://github.com/searchpioneer/pinecone-dotnet-client</RepositoryUrl>
<PackageProjectUrl>https://github.com/searchpioneer/pinecone-dotnet-client</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/searchpioneer/pinecone-dotnet-client/releases</PackageReleaseNotes>
<PackageTags>pinecone, database, vector, search</PackageTags>
<PineconeVersion>V3.0.0rc2</PineconeVersion>
</PropertyGroup>
Expand Down
5 changes: 1 addition & 4 deletions src/Pinecone.Grpc/ClientConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using Grpc.Core;
using Grpc.Net.Client;

namespace Pinecone.Grpc;
namespace Pinecone.Grpc;

/// <summary>
/// Configuration to interact with Pinecone service
Expand Down
8 changes: 4 additions & 4 deletions src/Pinecone.Grpc/Pinecone.Grpc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Title>Pinecone .NET gRPC client</Title>
<Description>.NET gRPC client for Pinecone vector database</Description>
<TargetFrameworks>net462; net471; netstandard2.0; net6.0; net7.0</TargetFrameworks>
<TargetFrameworks>net462; net471; netstandard2.0; net6.0; net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
Expand All @@ -14,9 +14,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.22.4" />
<PackageReference Include="Grpc.Net.Client" Version="2.53.0" />
<PackageReference Include="Grpc.Tools" Version="2.54.0">
<PackageReference Include="Google.Protobuf" Version="3.26.1" />
<PackageReference Include="Grpc.Net.Client" Version="2.62.0" />
<PackageReference Include="Grpc.Tools" Version="2.63.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
7 changes: 2 additions & 5 deletions tests/Pinecone.Grpc.Tests/DescribeIndexStatsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@
namespace Pinecone.Grpc.Tests;

[Collection("Pinecone")]
public class DescribeIndexStatsTests
public class DescribeIndexStatsTests(PineconeFixture fixture)
{
private readonly VectorService.VectorServiceClient? _client;

public DescribeIndexStatsTests(PineconeFixture fixture) =>
_client = fixture.VectorServiceClient;
private readonly VectorService.VectorServiceClient? _client = fixture.VectorServiceClient;

[Fact]
public void CanGetIndexStats()
Expand Down
16 changes: 8 additions & 8 deletions tests/Pinecone.Grpc.Tests/Pinecone.Grpc.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="System.Text.Json" Version="7.0.2" />
<PackageReference Include="Testcontainers" Version="3.1.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="System.Text.Json" Version="8.0.3" />
<PackageReference Include="Testcontainers" Version="3.8.0" />
<PackageReference Include="xunit" Version="2.8.0" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 396f91a

Please sign in to comment.