diff --git a/CHANGELOG b/CHANGELOG index 0d9693a3..4f90105a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +-------------------- +3.2.1 +-------------------- +- Bug fix: allow audience tag selector to specify tag group if desired + + -------------------- 3.2.0 -------------------- diff --git a/docs/push.rst b/docs/push.rst index 7cae82b0..5beedd39 100644 --- a/docs/push.rst +++ b/docs/push.rst @@ -95,6 +95,12 @@ Select a single tag: push.audience = UA.tag(tag) +Select a single tag with a specified tag group (Note: defaults to ``device`` tag group when one is not provided): + +.. code-block:: ruby + + push.audience = UA.tag(tag, group:'tag-group') + Select a single alias: .. code-block:: ruby diff --git a/lib/urbanairship/version.rb b/lib/urbanairship/version.rb index 00588b02..b3b0666b 100644 --- a/lib/urbanairship/version.rb +++ b/lib/urbanairship/version.rb @@ -1,3 +1,3 @@ module Urbanairship - VERSION = '3.2.0' + VERSION = '3.2.1' end