README.md in twilio-ruby-5.1.0 vs README.md in twilio-ruby-5.1.1

- old
+ new

@@ -4,22 +4,38 @@ [![Gem Version](http://img.shields.io/gem/v/twilio-ruby.svg)][gem] [![Code Quality](http://img.shields.io/codeclimate/github/twilio/twilio-ruby.svg)][codeclimate] A module for using the Twilio REST API and generating valid [TwiML](http://www.twilio.com/docs/api/twiml/ "TwiML - Twilio Markup Language"). [Click here to read the full documentation.][documentation] +## Recent Update + +As of release 5.1.0, Beta and Developer Preview products are now exposed via +the main `twilio-java` artifact. Releases of the `alpha` branch have been +discontinued. + +If you were using the `alpha` release line, you should be able to switch back +to the normal release line without issue. + +If you were using the normal release line, you should now see several new +product lines that were historically hidden from you due to their Beta or +Developer Preview status. Such products are explicitly documented as +Beta/Developer Preview both in the Twilio docs and console, as well as through +in-line code documentation here in the library. + + ## Installation To install using [Bundler][bundler] grab the latest stable version: ```ruby -gem 'twilio-ruby', '~> 5.1.0' +gem 'twilio-ruby', '~> 5.1.1' ``` To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install: ```bash -gem install twilio-ruby -v 5.1.0 +gem install twilio-ruby -v 5.1.1 ``` To build and install the development branch yourself from the latest source: ```bash @@ -118,12 +134,11 @@ There is a slightly more detailed document in the [Capability][capability] section of the wiki. ## Getting Started With TwiML -TwiML support is based on the [Builder][builder] library. You can construct a -TwiML response like this: +You can construct a TwiML response like this: ```ruby require 'twilio-ruby' response = Twilio::TwiML::VoiceResponse.new do |r| @@ -159,10 +174,9 @@ - Ruby 2.2.0 - Ruby 2.1.0 - Ruby 2.0.0 [capability]: https://github.com/twilio/twilio-ruby/wiki/Capability -[builder]: http://builder.rubyforge.org/ [examples]: https://github.com/twilio/twilio-ruby/blob/master/examples [documentation]: http://twilio.github.io/twilio-ruby [wiki]: https://github.com/twilio/twilio-ruby/wiki [bundler]: http://bundler.io [rubygems]: http://rubygems.org