Skip to content

Commit

Permalink
tweak package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
leeper committed Jun 2, 2018
1 parent cfe34af commit 7858dbe
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .Rbuildignore
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.?
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
.Rhistory
.RData
.Ruserdata
.Renviron
aws.ec2.Rproj
revdep/
^revdep/.?$
25 changes: 25 additions & 0 deletions Makefile
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
19 changes: 12 additions & 7 deletions NEWS.md
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.

0 comments on commit 7858dbe

Please sign in to comment.