Skip to content

Commit

Permalink
pdated Version
Browse files Browse the repository at this point in the history
  • Loading branch information
trinker committed Feb 25, 2015
1 parent a54efc0 commit 6045ec7
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 7 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
@@ -1,7 +1,7 @@
Package: regexr
Type: Package
Title: Readable Regular Expressions
Version: 1.0.2
Version: 1.1.0
Date: 2014-04-19
Authors@R: c(person("Tyler", "Rinker", email = "tyler.rinker@gmail.com",
role = c("aut", "cre")))
Expand All @@ -24,4 +24,4 @@ Description: An R framework for constructing and managing human readable regular
License: GPL-2
URL: http://trinker.github.com/regexr/
BugReports: http://github.com/trinker/regexr/issues
Roxygen: list(wrap = FALSE)
Roxygen: list(wrap = FALSE)
13 changes: 13 additions & 0 deletions NEWS
Expand Up @@ -16,6 +16,19 @@ And constructed with the following guidelines:
(and resets the patch)
* Bug fixes and misc changes bumps the patch

regexr 1.1.0
----------------------------------------------------------------

BUG FIXES

NEW FEATURES

MINOR FEATURES

IMPROVEMENTS

CHANGES

regexr 1.0.0 - 1.0.2
----------------------------------------------------------------

Expand Down
10 changes: 9 additions & 1 deletion README.Rmd
@@ -1,8 +1,16 @@
# regexr

```{r, echo=FALSE}
desc <- suppressWarnings(readLines("DESCRIPTION"))
regex <- "(^Version:\\s+)(\\d+\\.\\d+\\.\\d+)"
loc <- grep(regex, desc)
ver <- gsub(regex, "\\2", desc[loc])
verbad <- sprintf('<a href="https://img.shields.io/badge/Version-%s-orange.svg"><img src="https://img.shields.io/badge/Version-%s-orange.svg" alt="Version"/></a></p>', ver, ver)
````
[![Build Status](https://travis-ci.org/trinker/regexr.png?branch=master)](https://travis-ci.org/trinker/regexr)
[![Coverage Status](https://coveralls.io/repos/trinker/regexr/badge.png)](https://coveralls.io/r/trinker/regexr)
[![DOI](https://zenodo.org/badge/5398/trinker/regexr.svg)](http://dx.doi.org/10.5281/zenodo.13496)
v

<img src="inst/regexr_logo/r_regexr.png" alt="regexr logo">

Expand Down Expand Up @@ -152,7 +160,7 @@ get_construct(as.regexr(myregex2, names = FALSE))
Richard Cotton maintains the [`rebus`](https://github.com/richierocks/rebus) package to provide natural language based functions and constants that can be used to generate regular expressions. His work can be utilized within the **regexr** framework to maintain manageable commented and named *sub-expressions*.

```r
devtools::install_github("richierocks/rebus")
install.packages("richierocks/rebus")
library(rebus)

out <- construct(
Expand Down
4 changes: 3 additions & 1 deletion README.md
@@ -1,8 +1,10 @@
# regexr


[![Build Status](https://travis-ci.org/trinker/regexr.png?branch=master)](https://travis-ci.org/trinker/regexr)
[![Coverage Status](https://coveralls.io/repos/trinker/regexr/badge.png)](https://coveralls.io/r/trinker/regexr)
[![DOI](https://zenodo.org/badge/5398/trinker/regexr.svg)](http://dx.doi.org/10.5281/zenodo.13496)
v

<img src="inst/regexr_logo/r_regexr.png" alt="regexr logo">

Expand Down Expand Up @@ -405,7 +407,7 @@ construct(
Richard Cotton maintains the [`rebus`](https://github.com/richierocks/rebus) package to provide natural language based functions and constants that can be used to generate regular expressions. His work can be utilized within the **regexr** framework to maintain manageable commented and named *sub-expressions*.

```r
devtools::install_github("richierocks/rebus")
install.packages("richierocks/rebus")
library(rebus)

out <- construct(
Expand Down
6 changes: 3 additions & 3 deletions inst/CITATION
Expand Up @@ -6,12 +6,12 @@ citEntry(entry = "manual",
author = "Tyler W. Rinker",
organization = "University at Buffalo/SUNY",
address = "Buffalo, New York",
note = "version 1.0.2",
note = "version 1.1.0",
doi = "10.5281/zenodo.13496",
year = "2014",
url = "http://github.com/trinker/regexr",
textVersion = paste("Rinker, T. W. (2014).",
"regexr: Readable Regular Expressions.",
"version 1.0.2. University at Buffalo. Buffalo, New York.",
"version 1.1.0. University at Buffalo. Buffalo, New York.",
"http://github.com/trinker/regexr")
)
)
5 changes: 5 additions & 0 deletions inst/maintenance.R
Expand Up @@ -18,6 +18,11 @@ knitr::knit2html("README.Rmd", output ='README.md'); reports::delete("README.htm
#==========================
update_news()

#==========================
# UPDATE VERSION
#==========================
update_version()

#========================
#staticdocs dev version
#========================
Expand Down

0 comments on commit 6045ec7

Please sign in to comment.