Skip to content

Commit

Permalink
Version bump (2.9.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
marz619 committed Nov 22, 2017
1 parent 6e5646e commit 4820da8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,23 @@
History
=======

2.9.0 (2017-11-22)
------------------

* Adds the `options` method on the Resource Query object.

The call can be made as follows:

.. code-block: python
>>> gapi = Client(application_key='your_key')
>>> opt = gapi.departures.options()
Where `opt` is a JSON dict containt metadata about the `Departure` resource.


2.8.2 (2017-11-14)
------------------

* Adds fields `sale_start_datetime` and `sale_finish_datetime` to the
Promotion resource. The fields mark the start/finish date-time values
Expand All @@ -22,7 +38,7 @@ History
* This release adds a behaviour change to the `.all()` method on resource Query
objects. Prior to this release, the base Resource Query object would retain
any previously added `filter` values, and be used in subsequent calls. Now
the underlying filters are reset after a `<resource>.all()` call is amde.
the underlying filters are reset after a `<resource>.all()` call is made.

A more detailed description of the issue and fix can be found at:
* https://github.com/gadventures/gapipy/issues/76
Expand Down
2 changes: 1 addition & 1 deletion gapipy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '2.8.2'
__version__ = '2.9.0'
__title__ = 'gapipy'


Expand Down

0 comments on commit 4820da8

Please sign in to comment.