README.md in tracker_api-0.2.9 vs README.md in tracker_api-0.2.10

- old
+ new

@@ -51,9 +51,10 @@ story = project.story(847762630) # Find a story with the given ID story.activity # Get a list of all the activity performed on this story story.name = 'Save the Ewoks' # Update a single story attribute story.attributes = { name: 'Save the Ewoks', description: '...' } # Update multiple story attributes +story.labels << Label.new(name: 'Endor') # Add a new label to an existing story story.save # Save changes made to a story epics = project.epics # Get all epics for a project epic = epics.first label = epic.label # Get an epic's label