diff --git a/CHANGES.rst b/CHANGES.rst index 1c7a4c6..9a72851 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ Release History =============== +1.2.0 (released 2015-12-15) +--------------------------- + +Output Changes +~~~~~~~~~~~~~~ +- `#119`_: Support HTTP results. +- `#122`_: Allow packagers to set the user agent. + + 1.1.1 (released 2015-11-25) --------------------------- @@ -37,3 +46,5 @@ Changes .. _#103: https://github.com/RIPE-NCC/ripe-atlas-tools/issues/103 .. _#105: https://github.com/RIPE-NCC/ripe-atlas-tools/issues/105 +.. _#119: https://github.com/RIPE-NCC/ripe-atlas-tools/issues/119 +.. _#122: https://github.com/RIPE-NCC/ripe-atlas-tools/issues/122 diff --git a/ripe/atlas/tools/version.py b/ripe/atlas/tools/version.py index 46af323..e571f6c 100644 --- a/ripe/atlas/tools/version.py +++ b/ripe/atlas/tools/version.py @@ -13,4 +13,4 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -__version__ = "1.1.1" +__version__ = "1.2.0" diff --git a/setup.py b/setup.py index ac0694d..828d30a 100644 --- a/setup.py +++ b/setup.py @@ -33,8 +33,8 @@ install_requires=[ "python-dateutil", "requests>=2.7.0", - "ripe.atlas.cousteau>=1.0.4", - "ripe.atlas.sagan>=1.1.6", + "ripe.atlas.cousteau>=1.0.6", + "ripe.atlas.sagan>=1.1.8", "tzlocal", "pyyaml", "pyOpenSSL>=0.13",