Skip to content

Commit 1bda7c7

Browse files
Prepare for 1.0.5 🧙
* Apply formatting according to latest Black * Prepare for release
1 parent 6369008 commit 1bda7c7

File tree

19 files changed

+37
-12
lines changed

19 files changed

+37
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.vscode
22
venv
3-
venv38
3+
venv*
44
htmlcov
55
.coverage
66
__pycache__

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.5] 2024-02-01 :mage:
9+
10+
- Show event description in Gantt diagrams, by @changbowen
11+
- Add possibility to configure months time format in Gantt diagrams, by @yasamoka
12+
813
## 2023-12-24
914

1015
- Adds support for running tests using Python 3.12, and adds Python 3.12 to the

neoteroi/mkdocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.4"
1+
__version__ = "1.0.5"

neoteroi/mkdocs/cards/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
MIT License
77
Copyright (c) 2022 to present, Roberto Prevato
88
"""
9+
910
from markdown import Extension
1011

1112
from neoteroi.mkdocs.markdown.images import Image

neoteroi/mkdocs/contribs/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- the Git CLI can be used during the build.
77
88
"""
9+
910
import logging
1011
from datetime import datetime
1112
from fnmatch import fnmatch

neoteroi/mkdocs/contribs/git.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
history rewrites or files renamed without keeping contributor's history.
55
For this reason, it should be used together with a
66
"""
7+
78
import re
89
import subprocess
910
from datetime import datetime

neoteroi/mkdocs/contribs/html.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
This module contains methods to render the contributions stats.
33
"""
4+
45
import xml.etree.ElementTree as etree
56
from dataclasses import dataclass
67
from datetime import datetime

neoteroi/mkdocs/markdown/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This package contains common utilities for markdown used across the various plugins
33
for Markdown.
44
"""
5+
56
import re
67
from typing import Dict, Tuple
78

neoteroi/mkdocs/markdown/align.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Objects to describe alignment of elements.
33
"""
4+
45
import logging
56
from enum import Enum
67

neoteroi/mkdocs/markdown/data/source.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
This module defines a base class for types that can read text from a source.
33
"""
4+
45
from abc import ABC, abstractmethod
56
from typing import Any
67

0 commit comments

Comments
 (0)