Skip to content

Commit

Permalink
Make TranscriptParamsCloner public
Browse files Browse the repository at this point in the history
  • Loading branch information
Swimburger committed Sep 13, 2024
1 parent 871d13e commit e796b49
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/AssemblyAI/AssemblyAI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
<RootNamespace>AssemblyAI</RootNamespace>
<AssemblyName>AssemblyAI</AssemblyName>
<PackageId>AssemblyAI</PackageId>
<Version>1.1.2</Version>
<AssemblyVersion>1.1.2.0</AssemblyVersion>
<FileVersion>1.1.2.0</FileVersion>
<PackageVersion>1.1.2</PackageVersion>
<Version>1.1.3</Version>
<AssemblyVersion>1.1.3.0</AssemblyVersion>
<FileVersion>1.1.3.0</FileVersion>
<PackageVersion>1.1.3</PackageVersion>
<Title>AssemblyAI C# .NET SDK</Title>
<Authors>AssemblyAI</Authors>
<Description>The AssemblyAI C# .NET SDK provides an easy-to-use interface for interacting with the AssemblyAI API, which supports async and real-time transcription, audio intelligence models, as well as the latest LeMUR models.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/AssemblyAI/Core/CustomConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ internal static class CustomConstants
/// This is used for the AssemblyAI User-Agent.
/// If you update this, make sure to also update the version numbers in AssemblyAI.csproj
/// </summary>
internal const string Version = "1.1.2";
internal const string Version = "1.1.3";
}
2 changes: 1 addition & 1 deletion src/AssemblyAI/Transcripts/Types/TranscriptParamsCloner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace AssemblyAI.Transcripts;

[Mapper(UseDeepCloning = true)]
internal static partial class TranscriptParamsCloner
public static partial class TranscriptParamsCloner
{
/// <summary>
/// Deep clone TranscriptParams
Expand Down

0 comments on commit e796b49

Please sign in to comment.