Twilio 7.11.3

Prefix Reserved
dotnet add package Twilio --version 7.11.3
                    
NuGet\Install-Package Twilio -Version 7.11.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Twilio" Version="7.11.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Twilio" Version="7.11.3" />
                    
Directory.Packages.props
<PackageReference Include="Twilio" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Twilio --version 7.11.3
                    
#r "nuget: Twilio, 7.11.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Twilio&version=7.11.3
                    
Install Twilio as a Cake Addin
#tool nuget:?package=Twilio&version=7.11.3
                    
Install Twilio as a Cake Tool

twilio-csharp

Test Quality Gate Status NuGet Learn with TwilioQuest

Twilio REST API and TwiML Libraries for .NET

Twilio provides a HTTP-based API for sending and receiving phone calls and text messages. Learn more on twilio.com.

More documentation for this library can be found here.

Versions

twilio-csharp uses a modified version of Semantic Versioning for all changes. See this document for details.

Migrate from earlier versions

See the migration guide here. Also, if you were using the Twilio.Mvc package, that has been replaced by the Twilio.AspNet.Mvc package which is compatible with this version of the library.

TLS 1.2 Requirements

New accounts and subaccounts are now required to use TLS 1.2 when accessing the REST API. "Upgrade Required" errors indicate that TLS 1.0/1.1 is being used. With .NET, you can enable TLS 1.2 using this setting:

System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

Supported .NET versions

This library supports .NET applications that utilize .NET6+.

Installation

The best and easiest way to add the Twilio libraries to your .NET project is to use the NuGet package manager.

With Visual Studio IDE

From within Visual Studio, you can use the NuGet GUI to search for and install the Twilio NuGet package. Or, as a shortcut, simply type the following command into the Package Manager Console:

Install-Package Twilio

With .NET Core Command Line Tools

If you are building with the .NET Core command line tools, then you can run the following command from within your project directory:

dotnet add package Twilio

Sample usage

The examples below show how to have your application initiate and outbound phone call and send an SMS message using the Twilio .NET helper library:

TwilioClient.Init("ACCOUNT_SID", "AUTH_TOKEN");

var call = CallResource.Create(
    new PhoneNumber("+11234567890"),
    from: new PhoneNumber("+10987654321"),
    url: new Uri("https://my.twiml.here")
);
Console.WriteLine(call.Sid);

var message = MessageResource.Create(
    new PhoneNumber("+11234567890"),
    from: new PhoneNumber("+10987654321"),
    body: "Hello World!"
);
Console.WriteLine(message.Sid);

OAuth Feature for Twilio APIs

We are introducing Client Credentials Flow-based OAuth 2.0 authentication. This feature is currently in beta and its implementation is subject to change.

API examples here

Organisation API examples here

Specify Region and/or Edge

To take advantage of Twilio's Global Infrastructure, specify the target Region and/or Edge for the client:

TwilioClient.SetRegion("au1");
TwilioClient.SetEdge("sydney");

This will result in the hostname transforming from api.twilio.com to api.sydney.au1.twilio.com. Use appropriate client depending on the type of authentication used

Enable debug logging

There are two ways to enable debug logging in the default HTTP client. You can create an environment variable called TWILIO_LOG_LEVEL and set it to debug or you can set the LogLevel variable on the client as debug:

TwilioClient.SetLogLevel("debug");

Handle exceptions

For an example on how to handle exceptions in this helper library, please see the Twilio documentation.

Generate TwiML

To control phone calls, your application needs to output TwiML.

// TwiML classes can be created as standalone elements
var gather = new Gather(numDigits: 1, action: new Uri("hello-monkey-handle-key.cshtml"), method: HttpMethod.Post)
    .Say("To speak to a real monkey, press 1. Press 2 to record your own monkey howl. Press any other key to start over.");

// Attributes can be set directly on the object
gather.Timeout = 100;
gather.MaxSpeechTime = 200

// Arbitrary attributes can be set by calling set/getOption
var dial = new Dial().SetOption("myAttribute", 200)
                     .SetOption("newAttribute", false);

// Or can be created and attached to a response directly using helper methods
var response = new VoiceResponse()
    .Say("Hello Monkey")
    .Play(new Uri("http://demo.twilio.com/hellomonkey/monkey.mp3"))
    .Append(gather)
    .Append(dial);

// Serialize the TwiML objects to XML string
Console.WriteLine(response);

/*
<?xml version="1.0" encoding="utf-8"?>
<Response>
  <Say>Hello Monkey</Say>
  <Play>http://demo.twilio.com/hellomonkey/monkey.mp3</Play>
  <Gather numDigits="1" action="hello-monkey-handle-key.cshtml" method="POST" timeout="100" maxSpeechTime="200">
    <Say>To speak to a real monkey, press 1. Press 2 to record your own monkey howl. Press any other key to start over.</Say>
  </Gather>
  <Dial myAttribute="200" newAttribute="false"></Dial>
</Response>
*/

Use a custom HTTP Client

To use a custom HTTP client with this helper library, please see the advanced example of how to do so.

Annotations

Beta

Features marked with the [Beta] attribute are in a beta stage and may undergo changes in future releases. Use these features with caution as they may not be stable.

Deprecated

Features marked with the [Deprecated] attribute are deprecated and are not encouraged to use

Preview

Features marked with the [Preview] attribute are in a preview stage and are intended for evaluation purposes. They are subject to change and should not be used in production without thorough testing.

Docker Image

The Dockerfile present in this repository and its respective twilio/twilio-csharp Docker image are used by Twilio for testing purposes.

You could use the docker image for building and running tests:

docker build -t twiliobuild .

Bash:

docker run -it --rm -v $(pwd):/twilio twiliobuild
make test

Powershell:

docker run -it --rm -v ${PWD}:/twilio twiliobuild
make test

Get support

If you need help installing or using the library, please check the Twilio Support Help Center first, and file a support ticket if you don't find an answer to your question.

If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (204)

Showing the top 5 NuGet packages that depend on Twilio:

Package Downloads
Twilio.AspNet.Core

Twilio helper library for ASP.NET Core

iRely.Common

iRely.Common

Twilio.AspNet.Mvc

Twilio helper library for ASP.NET MVC on .NET Framework.

DTF.Services

Abstractions and implementations of DTF services for integration

Microsoft.Azure.WebJobs.Extensions.Twilio

This package contains binding extensions for Twilio.

GitHub repositories (28)

Showing the top 20 popular GitHub repositories that depend on Twilio:

Repository Stars
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
Ombi-app/Ombi
Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 9 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 19, React 19, Vue 3.5, BFF with YARP, NextJs 15, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, EF Core, OpenTelemetry, SignalR, Background Services, Health Checks, Rate Limiting, Clouds (Azure, AWS, GCP), ..
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
bitfoundation/bitplatform
Build all of your apps using what you already know and love ❤️
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
HTBox/allReady
This repo contains the code for allReady, an open-source solution focused on increasing awareness, efficiency and impact of preparedness campaigns as they are delivered by humanitarian and disaster response organizations in local communities.
microsoft/botbuilder-dotnet
Welcome to the Bot Framework SDK for .NET repository, which is the home for the libraries and packages that enable developers to build sophisticated bot applications using .NET.
simpleidserver/SimpleIdServer
OpenID, OAuth 2.0, SCIM2.0, UMA2.0, FAPI, CIBA & OPENBANKING Framework for ASP.NET Core
notifo-io/notifo
Multi channel notification service for collaboration tools, e-commerce, news service and more.
aelassas/wexflow
Workflow Engine and Automation Platform
streetwriters/notesnook-sync-server
Sync server for Notesnook (self-hosting in alpha)
SparkDevNetwork/Rock
An open source CMS, Relationship Management System (RMS) and Church Management System (ChMS) all rolled into one.
dotnetcore/aspnetcore-doc-cn
The Simplified Chinese edition of Microsoft ASP.NET Core documentation, translated by .NET Core Community and .NET China Community.
Azure/azure-webjobs-sdk-extensions
Azure WebJobs SDK Extensions
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
NVentimiglia/Unity3d-Foundation
Unity3d Databinding, MVVM, Tasks, Localization
BotBuilderCommunity/botbuilder-community-dotnet
Part of the Bot Builder Community Project. Repository for extensions for the Bot Builder .NET SDK, including middleware, dialogs, recognizers and more.
shr670377723/CommunityServer-master
Version Downloads Last updated
7.11.3 0 6/12/2025
7.11.2 10 6/12/2025
7.11.1 104,023 5/13/2025
7.11.0 45,600 5/5/2025
7.10.0 195,089 4/7/2025
7.9.1 149,144 3/20/2025
7.9.0 83,361 3/11/2025
7.8.5 169,344 2/20/2025
7.8.4 108,020 2/12/2025
7.8.3 184,823 1/28/2025
7.8.2 295,547 1/13/2025
7.8.1 30,039 1/9/2025
7.8.0 704,265 12/5/2024
7.7.0 518,436 11/15/2024
7.6.0 446,873 10/24/2024
7.5.1 114,450 10/17/2024
7.5.0 284,335 10/3/2024
7.4.0 147,688 9/25/2024
7.3.1 181,477 9/18/2024
7.3.0 176,428 9/5/2024
7.2.3 182,812 8/26/2024
7.2.2 1,026,047 7/2/2024
7.2.1 85,131 6/27/2024
7.2.0 129,578 6/18/2024
7.1.1 190,003 6/6/2024
7.1.0 567,163 5/24/2024
7.0.5 726,844 4/18/2024
7.0.4 279,114 4/4/2024
7.0.3 67,093 4/1/2024
7.0.2 368,552 3/14/2024
7.0.1 70,789 3/12/2024 7.0.1 is deprecated.
7.0.0 174,026 2/27/2024 7.0.0 is deprecated.
7.0.0-rc.4 7,785 2/23/2024
7.0.0-rc.3 141 2/23/2024
7.0.0-rc.2 1,696 2/15/2024
7.0.0-rc.1 81,878 10/5/2023
6.18.0 518,826 2/9/2024
6.16.1 711,570 1/15/2024
6.15.2 770,424 12/5/2023
6.15.1 367,226 11/17/2023
6.15.0 288,823 11/8/2023
6.14.1 567,221 10/5/2023
6.14.0 235,275 9/21/2023
6.13.0 211,268 9/7/2023
6.11.0 481,476 8/10/2023
6.10.1 247,509 7/27/2023
6.10.0 241,434 7/13/2023
6.9.0 238,150 6/28/2023
6.8.0 274,269 6/15/2023
6.7.0 306,546 6/1/2023
6.6.1 243,543 5/18/2023
6.6.0 281,291 5/4/2023
6.5.0 363,003 4/20/2023
6.4.0 375,875 4/5/2023
6.3.0 470,797 3/23/2023
6.2.5 461,351 3/9/2023
6.2.4 1,907,969 2/22/2023
6.2.3 174,090 2/8/2023
6.2.2 367,214 1/25/2023
6.2.1 434,901 1/11/2023
6.2.0 394,361 12/14/2022
6.1.0 328,904 11/30/2022
6.0.1 666,908 11/16/2022
6.0.0-rc.3 890 11/10/2022
6.0.0-rc.2 1,278 10/31/2022
6.0.0-rc.1 1,728 10/20/2022
5.81.2 588,861 11/10/2022
5.81.1 211,132 10/31/2022
5.81.0 318,887 10/19/2022
5.80.1 507,846 10/5/2022
5.80.0 847,399 9/7/2022
5.79.0 282,231 8/24/2022
5.78.1 300,769 8/10/2022
5.78.0 561,466 7/21/2022
5.77.0 864,308 7/13/2022
5.76.0 550,522 6/29/2022
5.75.3 533,330 6/15/2022
5.75.2 268,725 6/1/2022
5.75.1 532,732 5/18/2022
5.75.0 431,774 5/4/2022
5.74.0 913,855 4/6/2022
5.73.0 805,593 3/23/2022
5.72.1 532,408 3/9/2022
5.72.0 485,669 2/23/2022
5.71.0 6,637,771 2/9/2022
5.70.1 712,152 1/26/2022
5.70.0 503,112 1/12/2022
5.69.0 816,157 12/15/2021
5.68.2 538,703 12/1/2021
5.68.1 836,726 11/17/2021
5.68.0 270,127 11/3/2021
5.67.0 324,559 10/18/2021
5.66.0 268,220 10/6/2021
5.65.3 385,102 9/22/2021
5.65.2 554,214 9/8/2021
5.65.0 669,189 8/11/2021
5.64.1 323,003 7/28/2021
5.64.0 337,077 7/14/2021
5.63.0 290,297 6/30/2021
5.62.0 342,714 6/16/2021
5.61.1 372,185 6/2/2021
5.61.0 192,064 5/19/2021
5.60.0 406,042 5/5/2021
5.59.0 223,180 4/21/2021
5.58.0 375,787 4/7/2021
5.57.0 605,612 3/24/2021
5.56.0 547,890 3/15/2021
5.55.0 390,152 2/24/2021
5.54.0 376,442 2/12/2021
5.53.1 637,339 1/27/2021
5.53.0 210,421 1/13/2021
5.52.1 856,077 12/16/2020
5.52.0 265,798 12/8/2020
5.51.0 170,339 12/2/2020
5.50.0 654,807 11/18/2020
5.49.0 360,991 11/5/2020
5.48.0 894,221 10/14/2020
5.47.2 576,038 9/28/2020
5.47.1 332,192 9/21/2020
5.47.0 72,052 9/16/2020
5.46.2 347,652 9/3/2020
5.46.1 12,224 9/2/2020
5.46.0 575,269 8/19/2020
5.45.2 344,163 8/5/2020
5.45.1 280,377 7/22/2020
5.45.0 1,357,605 7/8/2020
5.44.0 590,967 6/24/2020
5.43.0 370,419 6/10/2020
5.42.0 363,434 5/27/2020
5.41.1 552,522 5/20/2020
5.41.0 165,551 5/13/2020
5.40.0 337,508 4/29/2020
5.39.1 370,118 4/15/2020
5.39.0 513,532 4/1/2020
5.38.0 402,652 3/18/2020
5.37.6 434,791 3/4/2020
5.37.5 506,509 2/19/2020
5.37.4 357,187 2/5/2020
5.37.3 445,579 1/22/2020
5.37.2 1,339,927 1/8/2020
5.37.1 384,812 12/18/2019
5.37.0 112,802 12/12/2019
5.36.0 258,598 12/4/2019
5.35.1 420,607 11/13/2019
5.35.0 314,231 10/30/2019
5.34.0 162,076 10/16/2019
5.33.1 990,935 10/2/2019
5.33.0 458,655 9/18/2019
5.32.0 237,006 9/4/2019
5.31.4 276,176 8/21/2019
5.31.3 255,493 8/5/2019
5.31.2 113,747 7/24/2019
5.31.1 422,553 7/10/2019
5.31.0 245,853 6/26/2019
5.30.0 312,329 6/12/2019
5.29.1 232,980 5/29/2019
5.29.0 225,752 5/15/2019
5.28.4 188,282 5/1/2019
5.28.3 121,020 4/24/2019
5.28.2 143,057 4/12/2019
5.28.1 5,000 4/12/2019
5.28.0 1,723,664 3/28/2019
5.27.2 136,122 3/15/2019
5.27.1 745,321 3/7/2019
5.27.0 81,621 3/1/2019
5.26.1 175,205 2/16/2019
5.26.0 420,089 2/4/2019
5.25.1 664,817 1/11/2019
5.25.0 13,089 1/10/2019
5.24.1 312,499 1/2/2019
5.24.0 78,966 12/14/2018
5.23.0 213,165 11/30/2018
5.22.0 128,652 11/16/2018
5.21.0 178,457 10/28/2018
5.20.1 625,781 10/16/2018
5.20.0 20,002 10/15/2018
5.19.0 347,325 10/4/2018
5.18.0 34,208 10/2/2018
5.17.0 329,537 9/20/2018
5.16.4 137,293 9/7/2018
5.16.3 170,469 8/31/2018
5.16.2 107,271 8/23/2018
5.16.0 144,704 8/17/2018
5.15.1 84,640 8/9/2018
5.15.0 164,225 8/3/2018
5.14.1 111,077 7/27/2018
5.14.0 191,711 7/16/2018
5.13.8 49,655 7/11/2018
5.13.7 75,850 7/5/2018
5.13.6 35,696 6/29/2018
5.13.5 36,423 6/21/2018
5.13.4 44,500 6/15/2018
5.13.3 144,712 6/5/2018
5.13.2 74,138 5/25/2018
5.13.1 54,823 5/18/2018
5.13.0 539,079 5/11/2018
5.12.1 41,324 5/7/2018
5.12.0 44,155 4/27/2018
5.11.1 66,048 4/20/2018
5.11.0 31,631 4/13/2018
5.10.0 194,673 3/23/2018
5.9.8 97,224 3/10/2018
5.9.7 429,347 2/24/2018
5.9.6 102,970 2/10/2018
5.9.5 71,261 1/31/2018
5.9.4 69,713 1/22/2018
5.9.3 3,621 1/22/2018
5.9.2 321,006 12/16/2017
5.9.1 80,137 12/1/2017
5.9.0 312,258 11/17/2017
5.8.3 237,583 11/11/2017
5.8.2 128,431 11/3/2017
5.8.1 52,720 10/28/2017
5.8.0 87,967 10/20/2017
5.7.2 63,651 10/13/2017
5.7.1 35,108 10/6/2017
5.7.0 39,870 9/29/2017
5.6.5 96,929 9/16/2017
5.6.4 103,878 9/1/2017
5.6.3 280,833 8/25/2017
5.6.2 19,527 8/18/2017
5.6.1 31,734 8/11/2017
5.6.0 100,820 7/27/2017
5.5.3-alpha2 31,468 7/7/2017
5.5.3-alpha1 2,987 7/1/2017
5.5.2 72,663 7/1/2017
5.5.2-alpha1 3,759 6/16/2017
5.5.1 91,017 6/16/2017
5.5.1-alpha1 3,997 5/24/2017
5.5.0 151,199 5/24/2017
5.4.3-alpha1 2,763 5/22/2017
5.4.2 35,924 5/19/2017
5.4.2-alpha1 2,880 5/8/2017
5.4.1 134,915 5/8/2017
5.4.1-alpha1 4,899 4/27/2017
5.4.0 27,552 4/27/2017
5.4.0-alpha1 2,910 4/27/2017
5.3.1-alpha1 6,010 4/17/2017
5.3.0 65,259 4/17/2017
5.2.2-alpha1 2,927 4/13/2017
5.2.1 13,375 4/13/2017
5.2.1-alpha1 11,591 3/31/2017
5.2.0 44,063 3/31/2017
5.1.2-alpha1 3,447 3/21/2017
5.1.1 47,574 3/21/2017
5.1.1-alpha1 3,485 3/9/2017
5.1.0 76,687 3/9/2017
5.0.3-alpha1 3,125 2/24/2017
5.0.2 36,771 2/24/2017
5.0.2-alpha1 2,913 2/24/2017
5.0.1 9,675 2/24/2017
5.0.1-alpha1 3,158 2/22/2017
5.0.0 51,148 2/22/2017
5.0.0-rca4 28,979 2/14/2017
5.0.0-rca3 2,746 2/9/2017
5.0.0-rca2 7,041 12/8/2016
5.0.0-rca1 3,878 11/9/2016
5.0.0-rc9 2,942 11/3/2016
5.0.0-rc8 4,382 9/19/2016
5.0.0-rc7 2,784 9/15/2016
5.0.0-rc6 3,701 9/1/2016
5.0.0-rc4 4,922 7/8/2016
5.0.0-rc2 21,079 6/2/2016
5.0.0-rc10 2,852 11/4/2016
5.0.0-rc1 2,624 6/1/2016
5.0.0-alpha1 2,613 2/22/2017
4.7.2 3,490,125 5/23/2016
4.7.1 309,912 4/5/2016
4.7.0 114,732 3/16/2016
4.5.0 401,760 2/5/2016
4.4.1 318,573 11/26/2015
4.4.0 26,055 11/12/2015
4.4.0-edge 2,707 11/12/2015
4.3.0 20,194 11/11/2015
4.2.1 62,285 10/30/2015
4.2.0 3,379 10/30/2015
4.1.0 200,855 9/24/2015
4.0.51 165,685 8/24/2015
4.0.5 225,923 8/20/2015
4.0.4 34,224 8/12/2015
4.0.3 236,207 5/21/2015
4.0.2 4,757 5/19/2015
4.0.1 7,012 5/14/2015
4.0.0 42,448 4/28/2015
3.8.45-beta 4,119 3/19/2015
3.8.44-beta 2,625 3/19/2015
3.8.40-beta 2,714 3/6/2015
3.8.30-beta 2,690 3/5/2015
3.8.29-beta 2,667 3/5/2015
3.8.28-beta 2,568 3/5/2015
3.8.26-beta 2,661 3/5/2015
3.8.18-beta 3,934 12/19/2014
3.7.55-alpha 7,986 6/4/2014
3.7.54-alpha 2,710 6/4/2014
3.7.53-alpha 2,731 6/4/2014
3.7.51-alpha 2,739 6/4/2014
3.7.50-alpha 2,777 6/4/2014
3.7.48-alpha 2,794 6/4/2014
3.7.46-alpha 2,689 6/4/2014
3.7.45-alpha 2,729 6/4/2014
3.7.44-alpha 2,744 6/4/2014
3.7.43-alpha 2,778 5/31/2014
3.7.40-alpha 2,721 5/31/2014
3.7.39-alpha 2,710 5/31/2014
3.7.38-alpha 2,712 5/31/2014
3.7.37-alpha 2,694 5/30/2014
3.7.35-alpha 2,737 5/30/2014
3.6.29 61,081 4/7/2015
3.6.28 3,684 4/7/2015
3.6.27 87,597 2/26/2015
3.6.26 37,591 2/19/2015
3.6.25 147,326 12/7/2014
3.6.24 24,589 11/14/2014
3.6.23 8,571 11/5/2014
3.6.22 3,740 11/5/2014
3.6.20 40,092 10/10/2014
3.6.19 3,292 10/10/2014
3.6.18 71,412 9/29/2014
3.6.17 27,184 8/28/2014
3.6.16 218,511 5/29/2014
3.6.15 4,333 5/27/2014
3.6.11 98,483 1/25/2014
3.6.10 25,962 11/20/2013
3.6.9 35,047 11/4/2013
3.6.8 3,376 11/4/2013
3.6.7 3,387 11/4/2013
3.6.6 3,342 11/4/2013
3.6.5 22,226 10/21/2013
3.6.4 7,822 10/7/2013
3.6.3 4,175 10/3/2013
3.6.2 6,009 9/30/2013
3.6.1 40,502 9/18/2013
3.5.17 78,810 7/31/2013
3.5.16 5,440 7/20/2013
3.5.15 8,153 7/13/2013
3.5.14 6,975 6/19/2013
3.5.12 11,571 4/10/2013
3.5.11 3,404 4/9/2013
3.5.10 4,427 4/5/2013
3.5.9 3,821 4/4/2013
3.5.8 4,543 3/18/2013
3.5.6 15,886 12/17/2012
3.5.5 12,830 10/25/2012
3.5.4 3,522 10/24/2012
3.5.3 4,438 10/17/2012
3.5.2 3,455 10/17/2012
3.5.1 5,734 8/31/2012
3.5.0 4,257 8/20/2012
3.4.5 8,825 7/12/2012
3.4.4 3,445 7/12/2012
3.4.3 3,595 7/9/2012
3.4.2 18,831 4/18/2012
3.4.1 56,421 4/18/2012
3.4.0 9,296 3/21/2012
3.3.7 4,204 2/15/2012
3.3.6 4,033 2/15/2012
3.3.5 3,438 2/15/2012
3.3.4 3,570 2/7/2012
3.3.3 3,445 2/6/2012
3.3.2 4,709 11/18/2011
3.3.1 3,546 11/18/2011
3.2.3 3,719 10/19/2011
3.2.2 3,633 10/11/2011
3.2.1 3,724 9/28/2011
3.2.0 3,719 9/21/2011
3.1.4 3,696 8/26/2011
3.1.3 3,632 8/9/2011
3.1.0 5,651 7/26/2011
3.0.1 4,052 7/20/2011
3.0.0 74,619 7/17/2011
2.0.2 81,092 1/31/2011