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