-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
63 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|