-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
.travis.yml | ||
README.Rmd | ||
Makefile | ||
drat.sh | ||
knitreadme.sh | ||
^revdep$ | ||
^man-roxygen$ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
man-roxygen | ||
CONTRIBUTING.md | ||
^\.github.? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,7 @@ | |
.Rhistory | ||
.RData | ||
.Ruserdata | ||
.Renviron | ||
aws.ec2.Rproj | ||
revdep/ | ||
^revdep/.?$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
pkg = $(shell basename $(CURDIR)) | ||
|
||
all: build | ||
|
||
NAMESPACE: R/* | ||
Rscript -e "devtools::document()" | ||
|
||
README.md: README.Rmd | ||
Rscript -e "knitr::knit('README.Rmd')" | ||
|
||
README.html: README.md | ||
pandoc -o README.html README.md | ||
|
||
../$(pkg)*.tar.gz: DESCRIPTION NAMESPACE README.md | ||
cd ../ && R CMD build $(pkg) | ||
|
||
build: ../$(pkg)*.tar.gz | ||
|
||
check: ../$(pkg)*.tar.gz | ||
cd ../ && R CMD check $(pkg)*.tar.gz | ||
rm ../$(pkg)*.tar.gz | ||
|
||
install: ../$(pkg)*.tar.gz | ||
cd ../ && R CMD INSTALL $(pkg)*.tar.gz | ||
rm ../$(pkg)*.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,40 @@ | ||
# CHANGES TO aws.ec2 0.1.12 | ||
# aws.ec2 0.1.13 | ||
|
||
* Merge major PR (#38) from Andrie de Vries. | ||
* Bumped **aws.signature** dependency to v0.4.0. | ||
|
||
# aws.ec2 0.1.12 | ||
|
||
* Default to EC2 API version 2016-11-15. | ||
* Add functionality to start spot instances (#9, h/t Peter Foley). | ||
|
||
# CHANGES TO aws.ec2 0.1.11 | ||
# aws.ec2 0.1.11 | ||
|
||
* Export `release_ip()` function (h/t Sean Davis) | ||
* Bump **aws.signature** version to 0.3.4 to use `locate_credentials()`. | ||
* Updated README | ||
|
||
# CHANGES TO aws.ec2 0.1.10 | ||
# aws.ec2 0.1.10 | ||
|
||
* Suggest **aws.efs**. | ||
|
||
# CHANGES TO aws.ec2 0.1.9 | ||
# aws.ec2 0.1.9 | ||
|
||
* `describe_keypairs()` now returns a named list, where names reflect keypair names. (#18, h/t Colin Gillespie) | ||
* `create_keypair()` gains a `path` argument to save a .pem file. (#17, h/t Colin Gillespie) | ||
* Noted that `instance` arguments can accept a single instance or vector/list of instances. (#19, h/t Colin Gillespie) | ||
* Fixed edge case error in `describe_instances()`. (#10, h/t Peter Foley) | ||
|
||
# CHANGES TO aws.ec2 0.1.7 | ||
# aws.ec2 0.1.7 | ||
|
||
* Implemented VPCs and Network ACLs. | ||
* Expanded documentation, especially cross-references. | ||
|
||
# CHANGES TO aws.ec2 0.1.6 | ||
# aws.ec2 0.1.6 | ||
|
||
* Several breaking API changes and substantial changes to return values of various functions to increase consistency across the package. | ||
* Considerable expansion of documentation. | ||
|
||
# CHANGES TO aws.ec2 0.1.1 | ||
# aws.ec2 0.1.1 | ||
|
||
* Initial release. |