Skip to content

Commit

Permalink
Prepare for release 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeluch committed Aug 29, 2012
1 parent 4d733d0 commit 9a8d655
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGES
@@ -1,3 +1,9 @@
Version 0.2
-------------

* Add `xam release`
* Fix broken imports

Version 0.1
-----------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -39,7 +39,7 @@ def get_requires():

setup(
name='xam',
version='0.2-dev',
version='0.2',
url='http://github.com/jbeluch/xam/',
license='BSD',
author='Jonathan Beluch',
Expand Down
13 changes: 8 additions & 5 deletions xam/addon.py
Expand Up @@ -99,11 +99,14 @@ def dependencies(self):
for required in requires.findall('import'))
return {}

#@property
#def extensions(self):
#extensions = self.xml.findall('extension')
#if extensions:
#return dict((ext.get('point')
@property
def extensions(self):
'''Returns a dict of extension xml nodes keyed by the 'point'
attribute.
'''
extensions = self.xml.findall('extension')
if extensions:
return dict((ext.get('point'), ext) for ext in extensions)

@property
@silence_attr_error
Expand Down

0 comments on commit 9a8d655

Please sign in to comment.