mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-07 16:19:38 -04:00
eb11e2f5c4
# Description of Changes <!-- Please describe your change, mention any related tickets, and so on here. --> - Bumps version to 2.2.0 # API and ABI breaking changes <!-- If this is an API or ABI breaking change, please apply the corresponding GitHub label. --> None # Expected complexity level and risk - 1 - this is just a version bump <!-- How complicated do you think these changes are? Grade on a scale from 1 to 5, where 1 is a trivial change, and 5 is a deep-reaching and complex change. This complexity rating applies not only to the complexity apparent in the diff, but also to its interactions with existing and future code. If you answered more than a 2, explain what is complex about the PR, and what other components it interacts with in potentially concerning ways. --> # Testing <!-- Describe any testing you've done, and any testing you'd like your reviewers to do, so that you're confident that all the changes work as expected! --> - [x] Version number is correct (`2.2.0`) - [x] BSL license file has been updated with the new date and version number --------- Co-authored-by: Zeke Foppa <196249+bfops@users.noreply.github.com> Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<LangVersion>9</LangVersion>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackageId>SpacetimeDB.ClientSDK</PackageId>
|
|
<Title>SpacetimeDB SDK</Title>
|
|
<Authors>jdetter</Authors>
|
|
<Company>Clockwork Labs</Company>
|
|
<Product>SpacetimeDB</Product>
|
|
<Description>The SpacetimeDB SDK is a software development kit (SDK) designed to simplify the interaction with SpacetimeDB server modules.</Description>
|
|
<Copyright>2024</Copyright>
|
|
<PackageProjectUrl>https://spacetimedb.com</PackageProjectUrl>
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/clockworklabs/com.clockworklabs.spacetimedbsdk</RepositoryUrl>
|
|
<AssemblyVersion>2.2.0</AssemblyVersion>
|
|
<Version>2.2.0</Version>
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);*~/**</DefaultItemExcludes>
|
|
<!-- We want to save DLLs for Unity which doesn't support NuGet. -->
|
|
<RestorePackagesPath>packages</RestorePackagesPath>
|
|
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SpacetimeDB.BSATN.Runtime" Version="2.2.*" />
|
|
|
|
<InternalsVisibleTo Include="SpacetimeDB.Tests" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<None Update="logo.png" Pack="true" PackagePath="" />
|
|
<None Update="README.md" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|