- Add
public_ip
andprivate_ip
to easily get the IP address onDropletKit::Droplet
objects returned.
- Use size_slug instead of size object in droplet mappings.
- Changing kernels is now
client.droplet_actions.change_kernel(kernel: 'name', droplet_id: 123)
instead ofdroplet_actions.kernel()
. - Include Account resource.
client.account
. This allows you to grab information about the user for the access token provided. - Paginate more resources. This includes:
- Droplet Kernels
- Actions
- Snapshots
- Backups
- Allow creating droplets with User Data and Private Networking
- See #8 - Thanks @rbishop !
- Fixed a bug where if the resource was paginated and returning 0 entries, an infinite loop would occur.
- See #11 - Thanks @webdestroya !
- Initial Release