make pypi :
[nepi.git] / CHANGELOG.md
1 # 6.0.5 - Feb 2, 2016
2
3 * make it possible to install in virtualenv (not using /etc/nepi anymore)
4
5 # 6.0.4 - Jan 8, 2016
6
7 * bugfix - `filter_existing_files` was looping over a changing dictionary
8
9 # 6.0.1 - November 5, 2015
10
11 * move the `src/nepi` directory in the git repo one step up
12   * so `ls nepi/util/`
13
14 * `import nepi; nepi.version`
15  
16
17 # 6.0.0 - November 5, 2015
18
19 * support for both python2 and python3
20 * additional dependency to `six`
21 * dependency to `ipaddr` only valid for python2, in python3 we use `ipaddress` from the standard library
22
23 * `register_resource` now accepts keyword args to set attributes in a single call
24
25 #
26     app = ec.register_resource("linux:Application", 
27                                hostname = hostname,
28                                username = username,
29                                identity = ssh_key)
30
31                                
32