Skip to content

Commit df31309

Browse files
committed
Bump version
1 parent 29204cf commit df31309

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Once you have created a rule, it's easy to use anywhere in your templates::
7878
{% testrule user_can_edit_mymodel object request.user %}
7979
<p>You are the owner!</p>
8080
{% endtestrule %}
81-
81+
8282
**Note:** *Don't use quotes around the rule name in the template.*
8383

8484
RulesMixin
@@ -120,11 +120,11 @@ Direct Calling
120120
Contributing
121121
============
122122

123-
Think this needs something else? To contribute to ``django-logical-rules`` create a fork on Bitbucket_. Clone your fork, make some changes, and submit a pull request.
123+
Think this needs something else? To contribute to ``django-logical-rules`` create a fork on Github_. Clone your fork, make some changes, and submit a pull request.
124124

125-
Bugs are great contributions too! Feel free to add an issue on Bitbucket_:
125+
Bugs are great contributions too! Feel free to add an issue on Github_:
126126

127-
.. _Bitbucket: https://bitbucket.org/aashe/django-logical-rules
127+
.. _Github: https://github.com/AASHE/django-logical-rules
128128

129129
.. _ReadTheDocs: http://django-logical-rules.readthedocs.org/en/latest/index.html
130130

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
#!/usr/bin/env python
2-
from setuptools import setup, find_packages
2+
from setuptools import setup
33
import os
44

5+
56
# Utility function to read README file
67
def read(fname):
78
return open(os.path.join(os.path.dirname(__file__), fname)).read()
89

10+
911
setup(name='django-logical-rules',
10-
version='1.0',
12+
version='2.0',
1113
description='A rule engine for Django apps.',
1214
author='Benjamin Stookey',
13-
author_email='ben@aashe.org',
14-
url='https://bitbucket.org/aashe/django-logical-rules',
15+
author_email='it@aashe.org',
16+
url='https://github.com/AASHE/django-logical-rules',
1517
license='LICENSE',
1618
long_description=read("README.rst"),
1719
packages=[

0 commit comments

Comments
 (0)