diff --git a/CHANGELOG.md b/CHANGELOG.md index 603b3d2e..fb76e6e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +**2.2.1 Release: April 27th, 2021** + +- Statcast Fielding & Running leaderboards -- @wfordh + +- Improved logger setup -- @Maradonna90 + +- Various bugfixes -- @TheCleric, @bdilday, @schorrm, @Latonis + +- Make Statcast parallelization optional -- @reddigari **2.2.0 Release: March 15, 2021** diff --git a/README.md b/README.md index c6d8e6ff..57fa9fb0 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,8 @@ # pybaseball -## 2.2.0 Release: March 15, 2021 - -**What's New?** - -- Cleaning up and parallelizing Statcast calls -- @TheCleric, @bdilday, and @schorrm - -- Statcast spin rate & spin direction -- @tpoatsy, see docs/statcast_pitcher_spin.md for more info. - -- Statcast Batter & Pitcher leaderboards -- @wfordh - -- We removed some fairly unnecessary dependencies that were causing a massive amount of dependency bloat -- @TheCleric and @bdilday. - -- Various test fixes -- @TheCleric - -- Spell-check to playerid lookup -- @tjburch and @mwisnie5 - -- Plotting bugfix -- @andersonfrailey - -- Marcels Example -- @andersonfrailey +## 2.2.1 Release: April 27, 2021 +See [CHANGELOG.md](CHANGELOG.md) for details. `pybaseball` is a Python package for baseball data analysis. This package scrapes Baseball Reference, Baseball Savant, and FanGraphs so you don't have to. The package retrieves statcast data, pitching stats, batting stats, division standings/team records, awards data, and more. Data is available at the individual pitch level, as well as aggregated at the season level and over custom time periods. See the [docs](https://github.com/jldbc/pybaseball/tree/master/docs) for a comprehensive list of data acquisition functions. diff --git a/setup.py b/setup.py index 677eed30..8575b42a 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,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.2.0', + version='2.2.1', description='Retrieve baseball data in Python', long_description=long_description,