Skip to content

Commit

Permalink
update news
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyelhabr committed Nov 23, 2023
1 parent bcfc159 commit f8c7ab5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: worldfootballR
Title: Extract and Clean World Football (Soccer) Data
Version: 0.6.4.0012
Version: 0.6.4.0013
Authors@R: c(
person("Jason", "Zivkovic", , "[email protected]", role = c("aut", "cre", "cph")),
person("Tony", "ElHabr", , "[email protected]", role = "ctb"),
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ importFrom(dplyr,case_when)
importFrom(dplyr,filter)
importFrom(dplyr,mutate)
importFrom(dplyr,pull)
importFrom(dplyr,select)
importFrom(dplyr,transmute)
importFrom(httr,GET)
importFrom(httr,add_headers)
Expand Down Expand Up @@ -114,6 +115,7 @@ importFrom(stringr,str_replace_all)
importFrom(stringr,str_squish)
importFrom(tibble,tibble)
importFrom(tidyr,crossing)
importFrom(tidyselect,vars_select_helpers)
importFrom(utils,read.csv)
importFrom(utils,sessionInfo)
importFrom(xml2,read_html)
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* `fb_league_stats(team_or_player = "player")` returning wrong season's data for Australian league (0.6.4.0009) [#333](https://github.com/JaseZiv/worldfootballR/issues/333)
* `tm_player_market_values()` returing the player name and valuation on separate rows in the `player_name` column [#338] (https://github.com/JaseZiv/worldfootballR/issues/338) and also returning `NA`s for the `player_age` column (0.6.4.0010) [#336](https://github.com/JaseZiv/worldfootballR/issues/336)
* `fb_match_results()` returns `NA` goals due to inconsistent `iconv()` behvaior on different systems (0.6.4.0011) [#326](https://github.com/JaseZiv/worldfootballR/issues/326)
* `tm_team_player_urls()` html element changed on transfermarkt so stopped returning values (0.6.4.0012)
* `tm_team_player_urls()` fixed after change to server-side loading (0.6.4.0013) [#342](https://github.com/JaseZiv/worldfootballR/issues/342)


### Improvements
Expand Down
3 changes: 2 additions & 1 deletion R/player_transfer_history.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@
#' @importFrom stringr str_squish
#' @importFrom httr GET add_headers content
#' @importFrom lubridate ymd
#' @importFrom dplyr mutate bind_rows
#' @importFrom dplyr mutate bind_rows select
#' @importFrom progress progress_bar
#' @importFrom tidyselect vars_select_helpers
#'
#' @export
tm_player_transfer_history <- function(player_urls, get_extra_info = TRUE) {
Expand Down

0 comments on commit f8c7ab5

Please sign in to comment.