- Restore support for Python 2.6 - Initial command line access support - Fix rogue printing error
1.3.0
New features: - Documentation improvements - Interfaces are now an object - Published services are now objects - Can delete published services
1.2.0
New features: - Add and delete groups - Add and remove users from groups - User data is parsed into variables: - "car: yellow" in metadata will turn into: `env.user_data.car` ( = yellow) - Support for templates - Delete environments and VMs - Command line parameters `python -m skytap.Users kermit` - Create users
1.1.1
Changes to be more compatible with Python 3.
1.1.0
Now variables can be put into user_data and they'll be parsed out.
For instance, add this to your environment's metadata:
`new_value: 10`
and this will be parsed in the module:
`print env[123456].user_data.new_value`
Comments are handled properly: `new_value: 123 very new!`