Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Stevenson committed May 28, 2015
1 parent 83db849 commit c7bf403
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: admbsecr
Type: Package
Title: SECR models with supplementary location information
Version: 1.1.2
Date: 2015-05-22
Version: 1.1.3
Date: 2015-05-28
Author: Ben Stevenson <[email protected]>,
David Borchers <[email protected]>
Maintainer: Ben Stevenson <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ roxygen:
build:
R CMD build --resave-data .
mkdir -p package-build
mv admbsecr_1.1.2.tar.gz package-build/
mv admbsecr_1.1.3.tar.gz package-build/

check:
R CMD check package-build/admbsecr_1.1.2.tar.gz --no-tests
R CMD check package-build/admbsecr_1.1.3.tar.gz --no-tests

install:
R CMD INSTALL package-build/admbsecr_1.1.2.tar.gz --install-tests
R CMD INSTALL package-build/admbsecr_1.1.3.tar.gz --install-tests

pdf:
R CMD Rd2pdf --pdf . &
Expand Down
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ admbsecr 1.1.3
* Bug fix to sim.capt(), also affecting boot.admbsecr(), for signal
strength models with call.freqs specified as an argument.

* Created optimisation executables with the new ADMB version 11.3.

* Added the acoustic-secr vignette.

admbsecr 1.1.2
Expand Down
6 changes: 3 additions & 3 deletions inst/scripts/install.r
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ for (i in pkgs){
}
options(warn = 0)
if (.Platform$OS == "windows"){
bin.name <- "https://github.com/b-steve/admbsecr/releases/download/v1.1.2/admbsecr_1.1.2.zip"
bin.name <- "https://github.com/b-steve/admbsecr/releases/download/v1.1.3/admbsecr_1.1.3.zip"
ext <- ".zip"
type <- "win.binary"
} else if (.Platform$OS == "unix"){
bin.name <- "https://github.com/b-steve/admbsecr/archive/v1.1.2.tar.gz"
bin.name <- "https://github.com/b-steve/admbsecr/archive/v1.1.3.tar.gz"
ext <- ".tar.gz"
type <- "source"
} else {
stop("Unknown OS type.")
}
dest <- paste("admbsecr_1.1.2", ext, sep = "")
dest <- paste("admbsecr_1.1.3", ext, sep = "")
library(downloader)
download(bin.name, destfile = dest)
install.packages(dest, repos = NULL, type = type)
Expand Down

0 comments on commit c7bf403

Please sign in to comment.