Skip to content

Commit

Permalink
Update version number to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tturocy committed Jul 17, 2020
1 parent 4f88407 commit 185088d
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 5 deletions.
27 changes: 27 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# [0.8.1] - 2020-07-17

## Behaviour changes
- The record type `radj` is now a synonym for the `cw:itb` extension
for placing automatic runners on base in the tiebreaker.
- A new runner advancement code 7 has been introduced. This marks
the case in which an automatic runner placed on base via an radj
record scores. This run is always unearned.
In the event an automatic runner is put out due to batter action,
the subsequent runner becomes considered the automatic runner,
just as with the rules for tracking pitcher responsibility for
baserunners.

## Bug fixes
- Day of week was not being correctly reported by `cwgame` for games
taking place prior to 1900; in some cases this could lead to
core dumps due to accessing memory improperly. This has been fixed
and the new algorithm is valid for any Gregorian calendar date.
- `cwgame` was not reporting runs, hits, errors, LOB, or number of
innings for games in the boxscore file format; these were all
being reported as zero. This has been fixed.

## Deprecations and removals
- The `cw:itb` record type is now considered deprecated in favour of
`radj`. Support for `cw:itb` will be removed at some point in future.


# [0.8.0] - 2020-06-09

## Behaviour changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ extracting information from baseball play-by-play and boxscore files
in the DiamondWare format, as used by Retrosheet
(http://www.retrosheet.org).

The latest release of Chadwick is 0.8.0.
The latest release of Chadwick is 0.8.1.

Author and License
==================
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#


AC_INIT([chadwick], [0.8.0])
AC_INIT([chadwick], [0.8.1])
AC_CONFIG_SRCDIR([src/cwlib/chadwick.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
# built documents.
#
# The short X.Y version.
version = '0.8.0'
version = '0.8.1'
# The full version, including alpha/beta/rc tags.
release = '0.8.0'
release = '0.8.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

setup(name="chadwick",
description="A library for manipulating baseball game-level and play-level data",
version="0.8.0",
version="0.8.1",
author="Dr T L Turocy",
author_email="ted.turocy@gmail.com",
url="http://chadwick.sourceforge.net",
Expand Down

0 comments on commit 185088d

Please sign in to comment.