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