diff --git a/ElevenLabs-DotNet/ElevenLabs-DotNet.csproj b/ElevenLabs-DotNet/ElevenLabs-DotNet.csproj
index a096ce6..d6f8bd4 100644
--- a/ElevenLabs-DotNet/ElevenLabs-DotNet.csproj
+++ b/ElevenLabs-DotNet/ElevenLabs-DotNet.csproj
@@ -14,8 +14,10 @@
RageAgainstThePixel
2023
ElevenLabs, AI, ML, Voice, TTS
- 2.0.1
- Version 2.0.1
+ 2.0.2
+ Version 2.0.2
+- Added the u-law format
+Version 2.0.1
- Pass some cancellation tokens to internals
Version 2.0.0
Refactoring to support latest API changes
diff --git a/ElevenLabs-DotNet/OutputFormat.cs b/ElevenLabs-DotNet/OutputFormat.cs
index 6f2dc3b..c406b56 100644
--- a/ElevenLabs-DotNet/OutputFormat.cs
+++ b/ElevenLabs-DotNet/OutputFormat.cs
@@ -44,6 +44,13 @@ public enum OutputFormat
///
/// Requires you to be subscribed to Independent Publisher tier or above.
///
- PCM_44100
+ PCM_44100,
+ ///
+ /// μ-law format (sometimes written mu-law, often approximated as u-law) with 8kHz sample rate.
+ ///
+ ///
+ /// Note that this format is commonly used for Twilio audio inputs.
+ ///
+ Ulaw_8000
}
}