Skip to content

Commit

Permalink
Merge pull request #343 from JaseZiv/fix-tm_player_transfer_history
Browse files Browse the repository at this point in the history
Fix `tm_player_transfer_history`
  • Loading branch information
JaseZiv committed Nov 23, 2023
2 parents f40ce4a + f8c7ab5 commit 8053e5f
Show file tree
Hide file tree
Showing 5 changed files with 207 additions and 223 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
8 changes: 8 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,15 @@ export(understat_team_season_shots)
export(understat_team_stats_breakdown)
importFrom(cli,cli_alert)
importFrom(dplyr,bind_cols)
importFrom(dplyr,bind_rows)
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)
importFrom(httr,content)
importFrom(httr,set_cookies)
importFrom(jsonlite,fromJSON)
Expand All @@ -83,6 +86,7 @@ importFrom(lubridate,ymd)
importFrom(magrittr,"%>%")
importFrom(progress,progress_bar)
importFrom(purrr,insistently)
importFrom(purrr,map)
importFrom(purrr,map_chr)
importFrom(purrr,map_dfr)
importFrom(purrr,pluck)
Expand All @@ -98,6 +102,8 @@ importFrom(rlang,inform)
importFrom(rstudioapi,isAvailable)
importFrom(rstudioapi,versionInfo)
importFrom(rvest,html_attr)
importFrom(rvest,html_children)
importFrom(rvest,html_node)
importFrom(rvest,html_nodes)
importFrom(rvest,html_table)
importFrom(rvest,html_text)
Expand All @@ -106,8 +112,10 @@ importFrom(stats,runif)
importFrom(stats,setNames)
importFrom(stringr,str_detect)
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
Loading

0 comments on commit 8053e5f

Please sign in to comment.