Skip to content

Commit 02a50a5

Browse files
committed
update news, cran comments, and bump to v0.5
1 parent a2eb9e4 commit 02a50a5

File tree

7 files changed

+42
-6
lines changed

7 files changed

+42
-6
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description: Provides a set of functions for interacting with the 'Digital
44
Ocean' API at <https://developers.digitalocean.com/documentation/v2>, including
55
creating images, destroying them, rebooting, getting details on regions, and
66
available images.
7-
Version: 0.4.6.9100
7+
Version: 0.5.0
88
Authors@R: c(
99
person("Scott", "Chamberlain", role = c("aut", "cre"), email = "[email protected]"),
1010
person("Hadley", "Wickham", role = "aut", email = "[email protected]"),

NEWS.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
analogsea 0.5.0
2+
===============
3+
4+
## NEW FEATURES
5+
6+
* New function `docklets_create()` to create many docklets at once
7+
(similar to `droplets_create()`) (#120)
8+
* New volumes methods for the new block storage (aka volumes)
9+
<https://www.digitalocean.com/products/storage/>: `volume`, `volume_action`,
10+
`volume_actions`, `volume_attach`, `volume_create`, `volume_delete`, `volume_detach`,
11+
`volume_resize`, `volume_snapshot_create`, `volume_snapshots`, `volumes`,
12+
`as.volume` (#121)
13+
* New methods for new unified snapshots DO endpoints: `snapshot`,
14+
`snapshots`, `snapshot_delete`, and `as.shapshot` (#121)
15+
16+
## MINOR IMPROVEMENTS
17+
18+
* You can now pass `tags` to the parameter of the same name when creating
19+
droplets, with either `droplet_create`, `droplets_create`,
20+
`docklet_create`, or `docklets_create`. The tags can be existing ones,
21+
or if not they will be created (#122)
22+
* Added more help on ssh keys to pkg level man file and to vignette (#115)
23+
24+
125
analogsea 0.4.0
226
===============
327

R/docklet.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ docklet_create <- function(name = random_name(),
8787
ipv6 = getOption("do_ipv6", NULL),
8888
private_networking =
8989
getOption("do_private_networking", NULL),
90+
tags = NULL,
9091
wait = TRUE,
9192
image = "docker",
9293
...) {
@@ -99,6 +100,7 @@ docklet_create <- function(name = random_name(),
99100
backups = backups,
100101
ipv6 = ipv6,
101102
private_networking = private_networking,
103+
tags = tags,
102104
wait = wait,
103105
...
104106
)

R/docklets_create.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ docklets_create <- function(names = NULL,
2121
ipv6 = getOption("do_ipv6", NULL),
2222
private_networking =
2323
getOption("do_private_networking", NULL),
24+
tags = NULL,
2425
wait = TRUE,
2526
image = "docker",
2627
...) {
@@ -33,6 +34,7 @@ docklets_create <- function(names = NULL,
3334
backups = backups,
3435
ipv6 = ipv6,
3536
private_networking = private_networking,
37+
tags = tags,
3638
wait = wait,
3739
...
3840
)

cran-comments.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
## Test environments
22

3-
* local OS X install, R 3.3.1
4-
* ubuntu 12.04 (on travis-ci), R 3.3.1
3+
* local OS X install, R 3.3.2
4+
* ubuntu 12.04 (on travis-ci), R 3.3.2
55
* win-builder (devel and release)
6+
* Rhub (Windows Server R-oldrel, Ubuntu Linux R-release, Fedora Linux R-devel)
67

78
## R CMD check results
89

@@ -20,7 +21,8 @@ There are no reverse dependencies.
2021

2122
---
2223

23-
This release includes many new functions, and a number of bug fixes.
24+
This release includes many new functions, and some improved
25+
documentation.
2426

2527
Thanks!
2628
Scott Chamberlain

man/docklet_create.Rd

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/docklets_create.Rd

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)