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