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