changelog file
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Thu, 5 Nov 2015 14:13:54 +0000 (15:13 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Thu, 5 Nov 2015 14:13:54 +0000 (15:13 +0100)
CHANGELOG.md [new file with mode: 0644]

diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644 (file)
index 0000000..f58f091
--- /dev/null
@@ -0,0 +1,24 @@
+# 6.0.1 - November 5, 2015
+
+* move the `src/nepi` directory in the git repo one step up
+  * so `ls nepi/util/`
+
+* `import nepi; nepi.version`
+
+# 6.0.0 - November 5, 2015
+
+* support for both python2 and python3
+* additional dependency to `six`
+* dependency to `ipaddr` only valid for python2, in python3 we use `ipaddress` from the standard library
+
+* `register_resource` now accepts keyword args to set attributes in a single call
+
+#
+    app = ec.register_resource("linux:Application", 
+                               hostname = hostname,
+                               username = username,
+                               identity = ssh_key)
+
+                               
+