Skip to content

Commit c5e47bd

Browse files
chore: release version 6.1.0 (#1279)
1 parent caaf47b commit c5e47bd

File tree

11 files changed

+19
-10
lines changed

11 files changed

+19
-10
lines changed

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "35c5d34", "specHash": "e7ce024", "version": "6.0.0" }
1+
{ "engineHash": "35c5d34", "specHash": "e7ce024", "version": "6.1.0" }

BoxSdkGen/Box.Sdk.Gen.Net/Box.Sdk.Gen.Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<Version>6.0.0</Version>
5+
<Version>6.1.0</Version>
66
<Description>Official Box .Net Generated SDK</Description>
77
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
88
<Nullable>enable</Nullable>

BoxSdkGen/Box.Sdk.Gen.Net/Networking/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ namespace Box.Sdk.Gen.Internal
44
{
55
static class Version
66
{
7-
internal static string sdkVersion = "6.0.0";
7+
internal static string sdkVersion = "6.1.0";
88
}
99
}

BoxSdkGen/Box.Sdk.Gen.NetFramework/Box.Sdk.Gen.NetFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net462</TargetFramework>
5-
<Version>6.0.0</Version>
5+
<Version>6.1.0</Version>
66
<Description>Official Box .Net Generated SDK</Description>
77
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
88
<isPackable>true</isPackable>

BoxSdkGen/Box.Sdk.Gen.NetFramework/Networking/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ namespace Box.Sdk.Gen.Internal
44
{
55
static class Version
66
{
7-
internal static string sdkVersion = "6.0.0";
7+
internal static string sdkVersion = "6.1.0";
88
}
99
}

BoxSdkGen/Box.Sdk.Gen.NetStandard/Box.Sdk.Gen.NetStandard.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>6.0.0</Version>
5+
<Version>6.1.0</Version>
66
<Description>Official Box .Net Generated SDK</Description>
77
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
88
<isPackable>true</isPackable>

BoxSdkGen/Box.Sdk.Gen.NetStandard/Networking/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ namespace Box.Sdk.Gen.Internal
44
{
55
static class Version
66
{
7-
internal static string sdkVersion = "6.0.0";
7+
internal static string sdkVersion = "6.1.0";
88
}
99
}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [6.1.0](https://github.com/box/box-windows-sdk-v2/compare/v6.0.0...v6.1.0) (2025-11-19)
6+
7+
8+
### **New Features and Enhancements:**
9+
10+
* **boxsdkgen:** Support Archive API (box/box-codegen[#865](https://github.com/box/box-windows-sdk-v2/issues/865)) ([#1270](https://github.com/box/box-windows-sdk-v2/issues/1270)) ([307a5d4](https://github.com/box/box-windows-sdk-v2/commit/307a5d43f8ba2b93ce35b3607026b4232cc92042))
11+
* **boxsdkgen:** Support GET enterprise configuration API (box/box-openapi[#559](https://github.com/box/box-windows-sdk-v2/issues/559)) ([#1212](https://github.com/box/box-windows-sdk-v2/issues/1212)) ([0d97d4d](https://github.com/box/box-windows-sdk-v2/commit/0d97d4d858c4bba8b3df0d01234691294a7c8998))
12+
* **boxsdkgen:** Use generated `RetryStrategy` for retrying requests (box/box-codegen[#872](https://github.com/box/box-windows-sdk-v2/issues/872)) ([#1227](https://github.com/box/box-windows-sdk-v2/issues/1227)) ([5b42a3e](https://github.com/box/box-windows-sdk-v2/commit/5b42a3e666751f1a1e529b875eafa8e7b0fbe930))
13+
514
## [6.0.0](https://github.com/box/box-windows-sdk-v2/compare/v5.8.0...v6.0.0) (2025-10-23)
615

716
Introducing a new major version of Box Windows SDK V2 `v6` that includes two namespaces — the manually maintained namespace and the generated namespace. The coexisting namespaces provide easier access to the latest Box API features and support gradual migration to the standalone generated namespace.

LegacySdk/Box.V2.Core/Box.V2.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<PackageId>Box.V2.Core.Legacy</PackageId>
55
<TargetFramework>netstandard2.0</TargetFramework>
6-
<Version>6.0.0</Version>
6+
<Version>6.1.0</Version>
77
<Description>Box SDK for v2 of the Box API. The SDK is targeting .Net Standard 2.0</Description>
88
<Authors>Box Inc.</Authors>
99
<PackageProjectUrl>https://github.com/box/box-windows-sdk-v2</PackageProjectUrl>

LegacySdk/Box.V2/Box.V2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<PackageId>Box.V2.Legacy</PackageId>
44
<TargetFramework>net462</TargetFramework>
5-
<Version>6.0.0</Version>
5+
<Version>6.1.0</Version>
66
<Description>Box SDK for v2 of the Box API. The SDK is targeting .NET Framework 4.6.2</Description>
77
<Authors>Box Inc.</Authors>
88
<RepositoryUrl>https://github.com/box/box-windows-sdk-v2.git</RepositoryUrl>

0 commit comments

Comments
 (0)