Skip to content

Commit

Permalink
Version bump to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
schorrm committed Oct 14, 2020
1 parent 9abdce3 commit e69adb3
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
36 changes: 35 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
# pybaseball

**2.0.0 Release: 28 August, 2020**
**2.1.0 Release: October 14, 2020**

## Release Notes

We have a lot of new stuff in this release.

- Caching
- We now cache most of the time expensive scraping functions. In addition, we have a consistent storage location for the Lahman Databank, so no more five copies of baseball-databank. This is currently disabled by default, you can enable it (see caching in the docs).
- Basically, now when you call something like `batting_stats(2018)`, for a while subsequent calls will just hit the cache, if it is enabled, so you don't need to do a bunch of pd.load and df.to_csv all over your notebooks.
- Right now this is a week by default, which is configurable in code, and will probably change soon to more specific per-function staleness. @TheCleric, @schorrm

- FanGraphs fielding - @TheCleric

- Massively expanded options for FanGraphs scraping - @TheCleric

- Marcel projections - @bdilday

- Batted ball trajectories - @bdilday

- Baseball Reference splits - @mwisnie5

- Add spray angle to statcast dataframes - @tjburch

- Flag imputed data (where Trackman didn't do it, stringers did) in statcast batting - @tjburch
- See this piece in [The Hardball Times](https://tht.fangraphs.com/43416-2/) for more info.

- Plot batted ball profile - @tjburch

- Improvements to data type inference - @TheCleric

- Unit testing, by @TheCleric

- And various bugfixes, with thanks to @bdilday, @bgunn34, and @TheCleric.

**2.0.0 Release: August 28, 2020**

## Recent Updates
- New Maintainer: after a period of inactive maintenance, this is again being actively maintained.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='2.0.0',
version='2.1.0',

description='Retrieve baseball data in Python',
long_description=long_description,
Expand Down

0 comments on commit e69adb3

Please sign in to comment.