Skip to content

Commit

Permalink
Release version 0.0.0.dev41
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Sep 26, 2024
1 parent e1612e6 commit a0a1f48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev40"
version = "0.0.0.dev41"
name = "LoggerMan"
dependencies = [
"MDit == 0.0.0.dev13",
Expand Down
2 changes: 1 addition & 1 deletion src/loggerman/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def current_section_level(self) -> int:
def section_end(self, target_level: int | None = None):
target_level = target_level or self.current_section_level - 1
self._doc.close_section(target_level=target_level)
self._next_section_num = self._next_section_num[:target_level]
self._next_section_num = self._next_section_num[:target_level + 1]
self._next_section_num[-1] += 1
self._out_of_section = True
self._curr_list_key = None
Expand Down

0 comments on commit a0a1f48

Please sign in to comment.