Skip to content

Commit

Permalink
Merge branch 'release/1.0.1'
Browse files Browse the repository at this point in the history
* release/1.0.1:
  fixes issue #56
  start v1.1
  • Loading branch information
saxix committed Dec 15, 2015
2 parents c7c2cbc + 44b2ac9 commit 1d3254b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ cache:
branches:
only:
- develop
- master
- feature/travis

services:
Expand Down
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Release 1.0.1
-------------
* fixes :issue:`56` (thanks oppianmatt).

Release 1.0
-----------
* **BACKWARD INCOMPATIBLE**:: dropped support for Django prior 1.6
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from setuptools.command.test import test as TestCommand

ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
sys.path.append(os.path.join(ROOT, 'src'))
sys.path.insert(0, os.path.join(ROOT, 'src'))

app = __import__('concurrency')
base_url = 'https://github.com/saxix/django-concurrency/'
Expand Down
2 changes: 1 addition & 1 deletion src/concurrency/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__author__ = 'sax'
default_app_config = 'concurrency.apps.ConcurrencyConfig'

VERSION = __version__ = (1, 0, 0, 'final', 0)
VERSION = __version__ = (1, 0, 1, 'final', 0)
NAME = 'django-concurrency'


Expand Down

0 comments on commit 1d3254b

Please sign in to comment.