Skip to content

Commit 57d6312

Browse files
committed
Fix #38
1 parent 6a6326b commit 57d6312

31 files changed

+198
-144
lines changed

DESCRIPTION

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package: urltools
22
Type: Package
33
Title: Vectorised Tools for URL Handling and Parsing
4-
Version: 1.3.2
5-
Date: 2015-10-09
6-
Author: Oliver Keyes [aut, cre], Jay Jacobs [aut, cre], Mark Greenaway [ctb],
7-
Bob Rudis [ctb]
4+
Version: 1.4.0
5+
Date: 2016-04-12
6+
Author: Oliver Keyes [aut, cre], Jay Jacobs [aut, cre], Mark Greenaway [ctb],
7+
Bob Rudis [ctb]
88
Maintainer: Oliver Keyes <[email protected]>
99
Description: A toolkit for handling URLs that so far includes functions for URL
1010
encoding and decoding, parsing, and parameter extraction. All functions are
@@ -14,8 +14,7 @@ Description: A toolkit for handling URLs that so far includes functions for URL
1414
URLs.
1515
License: MIT + file LICENSE
1616
LazyData: TRUE
17-
LinkingTo:
18-
Rcpp
17+
LinkingTo: Rcpp
1918
Imports:
2019
Rcpp,
2120
methods
@@ -25,3 +24,4 @@ Suggests:
2524
URL: https://github.com/Ironholds/urltools/
2625
BugReports: https://github.com/Ironholds/urltools/issues
2726
VignetteBuilder: knitr
27+
RoxygenNote: 5.0.1

NAMESPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by roxygen2 (4.1.1): do not edit by hand
1+
# Generated by roxygen2: do not edit by hand
22

33
export("domain<-")
44
export("fragment<-")

NEWS

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
Version 1.4.0
22

3-
DEVELOPMENT
3+
BUG FIXES
4+
* Full NA support is now available!
45

5-
* NAs are now supported in encoding, decoding,
6+
DEVELOPMENT
7+
* A substantial (20%) speed increase is now available thanks to internal
8+
refactoring.
69

710
Version 1.3.3
811
-------------------------------------------------------------------------

R/urltools.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#' entirely vectorised. It is intended to be useful for people dealing with
66
#' web-related datasets, such as server-side logs.
77
#'
8-
#' @seealso the \href{http://cran.rstudio.com/web/packages/urltools/vignettes/urltools.html}{package vignette}.
8+
#' @seealso the \href{https://cran.r-project.org/web/packages/urltools/vignettes/urltools.html}{package vignette}.
99
#' @useDynLib urltools
1010
#' @importFrom Rcpp sourceCpp
1111
#' @docType package

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,11 @@ By participating in this project you agree to abide by its terms.
2929
The latest CRAN version can be obtained via:
3030

3131
install.packages("urltools")
32-
33-
The latest maintenance version:
34-
35-
devtools::install_github("ironholds/urltools", ref = "1.3.2")
3632

3733
To get the development version:
3834

3935
devtools::install_github("ironholds/urltools")
4036

4137
###Dependencies
4238
* R. Doy.
43-
* [Rcpp](http://cran.rstudio.com/web/packages/Rcpp/)
39+
* [Rcpp](https://cran.r-project.org/package=Rcpp)

man/domain.Rd

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

man/encoder.Rd

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

man/fragment.Rd

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

man/param_get.Rd

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

man/param_remove.Rd

Lines changed: 1 addition & 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)