Skip to content

Commit

Permalink
Merge pull request #1 from rstudio/3.5
Browse files Browse the repository at this point in the history
Bump 3.x to 3.5.0
  • Loading branch information
cpsievert authored Apr 30, 2020
2 parents 8ef32c0 + de548da commit 72f16b2
Show file tree
Hide file tree
Showing 10 changed files with 771 additions and 493 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: jquerylib
Title: Obtain 'jQuery' as an HTML Dependency Object
Version: 0.1
Version: 0.1.1
Authors@R: c(
person("Carson", "Sievert", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-4958-2844")),
person("Joe", "Cheng", role = "aut", email = "[email protected]"),
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# jquerylib 0.1.1

* `jquery_core(3)` now returns 3.5.0 instead of 3.4.1
2 changes: 1 addition & 1 deletion R/jquery.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jquery_core <- function(major_version = 3, minified = getOption("shiny.minified"
}

expand_version <- function(major_version) {
if (major_version == 3) return("3.4.1")
if (major_version == 3) return("3.5.0")
if (major_version == 2) return("2.2.4")
if (major_version == 1) return("1.12.4")
stop("major_version must be 1, 2, or 3.")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jquerylib::jquery_core(3)

## List of 10
## $ name : chr "jquery"
## $ version : chr "3.4.1"
## $ version : chr "3.5.0"
## $ src :List of 2
## ..$ href: chr "https://code.jquery.com"
## ..$ file: chr "lib"
## $ meta : NULL
## $ script : chr "jquery-3.4.1.js"
## $ script : chr "jquery-3.5.0.js"
## $ stylesheet: NULL
## $ head : NULL
## $ attachment: NULL
Expand Down
1 change: 1 addition & 0 deletions inst/lib/AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -354,3 +354,4 @@ Pat O'Callaghan <[email protected]>
JuanMa Ruiz <[email protected]>
Ahmed.S.ElAfifi <[email protected]>
Sean Robinson <[email protected]>
Christian Oliff <[email protected]>
2 changes: 0 additions & 2 deletions inst/lib/jquery-3.4.1.min.js

This file was deleted.

Loading

0 comments on commit 72f16b2

Please sign in to comment.