All Versions
11
Latest Version
Avg Release Cycle
88 days
Latest Release
2446 days ago

Changelog History
Page 1

  • v2.1.3

    August 05, 2017
  • v2.1.2 Changes

    September 16, 2016
  • v2.1.1 Changes

    September 16, 2016

    Full Changelog

    Closed issues:

    • consider validating requests are from twilio #15

    ๐Ÿ”€ Merged pull requests:

  • v2.1.0 Changes

    January 23, 2016

    This version comes with two new features:

    Verb Option Variables

    Verb options can now be a variable. Previously, you to pass in options as a list to each verb, like this:

    say "Welcome...", voice: "alice"say "Press 1 to...", voice: "alice"
    

    Now, you can define a shared variable or private method, and share that between verbs:

    options = [voice: "alice"] say "Welcome...", options say "Press 1 to...", options
    

    0๏ธโƒฃ Default Verb Options

    โšก๏ธ Verbs can now have default options. For example, if you wanted the "Alice" voice to be the default, you can update your mix configuration in config/config.exs like so:

    config :ex\_twiml, :defaults, say: [voice: "alice"]
    

    Check out the README for more details on that.

  • v2.0.1 Changes

    December 14, 2015

    Full Changelog

    Closed issues:

    • Dynamically calling verbs. #10
    • ๐Ÿ›  Fix Build Badge & Travis Build #6

    ๐Ÿ”€ Merged pull requests:

  • v2.0.0 Changes

    September 12, 2015

    Full Changelog

    Closed issues:

    • Using with Phoenix Framework #7

    ๐Ÿ”€ Merged pull requests:

  • v1.1.3 Changes

    April 23, 2015

    Full Changelog

    ๐Ÿ”€ Merged pull requests:

  • v1.1.2 Changes

    April 23, 2015

    Full Changelog

    ๐Ÿ›  Fixed bugs:

    • ๐Ÿ›  Bugfix: Allow using a variable as only argument to verb #4 (danielberkompas)
  • v1.1.1 Changes

    April 17, 2015

    Full Changelog

    ๐Ÿ›  Fixed bugs:

  • v1.1.0 Changes

    April 12, 2015

    Full Changelog

    Implemented enhancements: