Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Commit

Permalink
Version 0.5.6: Update version and copyright year
Browse files Browse the repository at this point in the history
  • Loading branch information
kipanshi committed Feb 12, 2015
1 parent 8c72bb7 commit 09f83ed
Show file tree
Hide file tree
Showing 21 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion license.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
BSD license
***************

Copyright (c) 2010-2014, oDesk http://www.odesk.com
Copyright (c) 2010-2015, oDesk https://www.odesk.com

All rights reserved.

Expand Down
4 changes: 2 additions & 2 deletions odesk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

# Updated by the script
"""Main package of the python bindings for oDesk API.
Expand All @@ -13,7 +13,7 @@
"""

VERSION = '0.5.5.1'
VERSION = '0.5.6'


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion odesk/client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

import os
import json
Expand Down
2 changes: 1 addition & 1 deletion odesk/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk
"""Here we watch the ``PYTHON_ODESK_BASE_URL``
variable and if it is defined, use it as ``BASE_URL``.
Expand Down
2 changes: 1 addition & 1 deletion odesk/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

import logging
import urllib2
Expand Down
2 changes: 1 addition & 1 deletion odesk/http.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

import logging
import urllib2
Expand Down
2 changes: 1 addition & 1 deletion odesk/namespaces.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk
import os
from .config import BASE_URL

Expand Down
2 changes: 1 addition & 1 deletion odesk/oauth.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

import os
import time
Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk
"""Routers package.
All communication with oDesk API is handled by the routers.
Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/finreport.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from odesk.namespaces import GdsNamespace

Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/hr.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from odesk.namespaces import Namespace
from odesk.utils import assert_parameter, ApiValueError
Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/job.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from odesk.namespaces import Namespace

Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/mc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

import urllib

Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/offers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from odesk.namespaces import Namespace
from odesk.utils import assert_parameter, ApiValueError
Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/provider.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from odesk.namespaces import Namespace

Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/task.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

import urllib

Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/team.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from odesk.namespaces import Namespace
from odesk.utils import assert_parameter
Expand Down
2 changes: 1 addition & 1 deletion odesk/routers/timereport.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from odesk.namespaces import GdsNamespace

Expand Down
2 changes: 1 addition & 1 deletion odesk/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from decimal import Decimal

Expand Down
2 changes: 1 addition & 1 deletion odesk/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python bindings to oDesk API
# python-odesk version 0.5
# (C) 2010-2014 oDesk
# (C) 2010-2015 oDesk

from datetime import date
from odesk.exceptions import ApiValueError
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
readme.close()


VERSION = (0, 5, 5, 1, 0)
VERSION = (0, 5, 6, 0, 0)


def get_version():
Expand Down

0 comments on commit 09f83ed

Please sign in to comment.