Skip to content

Commit bd20657

Browse files
Release v0.5.1
1 parent 1309daf commit bd20657

File tree

7 files changed

+9
-19
lines changed

7 files changed

+9
-19
lines changed

Makefile

Lines changed: 0 additions & 14 deletions
This file was deleted.

coverage-badge.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

dayplot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from .utils import load_dataset
44
from .styles import styles
55

6-
__version__ = "0.5.0"
6+
__version__ = "0.5.1"
77
__all__ = ["calendar", "fetch_github_contrib", "load_dataset", "styles"]

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ A simple-to-use Python library to build **calendar heatmaps** with ease. It's bu
148148
import matplotlib.pyplot as plt
149149
import dayplot as dp
150150

151-
df = dp.load_dataset("pandas") # can also be "polars", "pyarrow", etc
151+
df = dp.load_dataset("pandas")
152152

153153
fig, ax = plt.subplots(figsize=(15, 6))
154154
dp.calendar(

justfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
preview:
2+
uv run mkdocs serve
3+
4+
test:
5+
uv run pytest

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dayplot"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Calendar heatmaps with matplotlib"
55
license = "MIT"
66
license-files = ["LICENSE"]

tests/test_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,4 @@ def test_month_grid(month_grid, month_grid_kws):
279279

280280

281281
def dayplot_version():
282-
assert dayplot.__version__ == "0.5.0"
282+
assert dayplot.__version__ == "0.5.1"

0 commit comments

Comments
 (0)