Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
brandjon committed Jan 4, 2015
2 parents 015916a + cfab529 commit 2396153
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release notes

## 0.2.1 (2015-01-04)

- fix packaging bug regarding missing required files

## 0.2.0 (2015-01-03)

- initial release
2 changes: 1 addition & 1 deletion iast/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Provides tools for defining and manipulating abstract syntax trees."""

__version__ = '0.2.0'
__version__ = '0.2.1'

from .asdl import *
from .util import *
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name = 'iAST',
version = '0.2.0',
version = '0.2.1',
url = 'https://github.com/brandjon/iast',

author = 'Jon Brandvein',
Expand All @@ -18,7 +18,8 @@
'Topic :: Software Development :: Libraries :: Python Modules',
],

packages = ['iast'],
packages = ['iast', 'iast.asdl', 'iast.python'],
package_data = {'iast.asdl': ['*.asdl']},

test_suite = 'tests',

Expand Down

0 comments on commit 2396153

Please sign in to comment.