Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
meakbiyik committed Jul 2, 2023
1 parent 892a8d2 commit 8c94965
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 57 deletions.
58 changes: 32 additions & 26 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,32 @@
<!-- markdownlint-disable MD022 MD024 MD032 -->
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 09.04.2021
### Added
- When outlined=True and twogoalline=True, twogoallines now also jump across the bars (as baseline already did) to make real transparency possible
- Package is available on PyPI

### Changed
- Default spacing from 0.8 to 0.9.
- Tip thicknesses in outlined cases are now equal to the baseline width (except when twogoalline=True, at which point if score is 2, thickness is halved to remove visual artifacts).

### Fixed
- Default documented thickness being inconsistent with the effective value

## [0.1.0] - 24.03.2021
### Added
- Initial release of the soccerbars package.

[Unreleased]: https://github.com/meakbiyik/soccerbars/compare/v0.1.0...HEAD
[0.2.0]: https://github.com/meakbiyik/soccerbars/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/meakbiyik/soccerbars/releases/tag/v0.1.0
<!-- markdownlint-disable MD022 MD024 MD032 -->
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.1] - 02.07.2022
### Fixed
- Inner path seam artifacts in low resolution
- Numpy build issues

## [0.2.0] - 09.04.2021
### Added
- When outlined=True and twogoalline=True, twogoallines now also jump across the bars (as baseline already did) to make real transparency possible
- Package is available on PyPI

### Changed
- Default spacing from 0.8 to 0.9.
- Tip thicknesses in outlined cases are now equal to the baseline width (except when twogoalline=True, at which point if score is 2, thickness is halved to remove visual artifacts).

### Fixed
- Default documented thickness being inconsistent with the effective value

## [0.1.0] - 24.03.2021
### Added
- Initial release of the soccerbars package.

[Unreleased]: https://github.com/meakbiyik/soccerbars/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/meakbiyik/soccerbars/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/meakbiyik/soccerbars/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/meakbiyik/soccerbars/releases/tag/v0.1.0
60 changes: 30 additions & 30 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
Package: soccerbars
Title: Word-Sized Tallies of Football Results
Version: 0.2.0
Authors@R:
c(person(given = "Ulrik",
family = "Brandes",
role = c("aut", "cph"),
email = "[email protected]"),
person(given = "M. Eren",
family = "Akbiyik",
role = c("cre", "cph"),
email = "[email protected]"))
Description: Word-sized tallies of association football results using
multivariate sparklines based on Gestalt theory (gestaltlines).
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Suggests:
testthat,
covr,
spelling
Imports:
ggplot2,
checkmate,
grDevices
URL: https://github.com/meakbiyik/soccerbars
BugReports: https://github.com/meakbiyik/soccerbars/issues
Language: en-US
Package: soccerbars
Title: Word-Sized Tallies of Football Results
Version: 0.2.1
Authors@R:
c(person(given = "Ulrik",
family = "Brandes",
role = c("aut", "cph"),
email = "[email protected]"),
person(given = "M. Eren",
family = "Akbiyik",
role = c("cre", "cph"),
email = "[email protected]"))
Description: Word-sized tallies of association football results using
multivariate sparklines based on Gestalt theory (gestaltlines).
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Suggests:
testthat,
covr,
spelling
Imports:
ggplot2,
checkmate,
grDevices
URL: https://github.com/meakbiyik/soccerbars
BugReports: https://github.com/meakbiyik/soccerbars/issues
Language: en-US
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "soccerbars"
version = "0.2.0"
version = "0.2.1"
description = "Word-sized tallies of association football results using multivariate sparklines based on Gestalt theory (gestaltlines)."
authors = ["M. Eren Akbiyik <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 8c94965

Please sign in to comment.