Skip to content

Commit

Permalink
3.4.4 - Fix for default markdown handling
Browse files Browse the repository at this point in the history
  • Loading branch information
vkottler committed Oct 26, 2024
1 parent 03cbfd7 commit 94302ac
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- run: |
mk python-release owner=vkottler \
repo=vcorelib version=3.4.3
repo=vcorelib version=3.4.4
if: |
matrix.python-version == '3.12'
&& matrix.system == 'ubuntu-latest'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
=====================================
generator=datazen
version=3.1.4
hash=481d954406ac1e05f0fe2f1ff7b1882c
hash=7ea5d02e721034df4d7213302d0c348b
=====================================
-->

# vcorelib ([3.4.3](https://pypi.org/project/vcorelib/))
# vcorelib ([3.4.4](https://pypi.org/project/vcorelib/))

[![python](https://img.shields.io/pypi/pyversions/vcorelib.svg)](https://pypi.org/project/vcorelib/)
![Build Status](https://github.com/vkottler/vcorelib/workflows/Python%20Package/badge.svg)
Expand Down
2 changes: 1 addition & 1 deletion config
2 changes: 1 addition & 1 deletion local/variables/package.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
major: 3
minor: 4
patch: 3
patch: 4
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"

[project]
name = "vcorelib"
version = "3.4.3"
version = "3.4.4"
description = "A collection of core Python utilities."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
4 changes: 2 additions & 2 deletions vcorelib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.4
# hash=40b28a09803905539f370a436a28f082
# hash=361158fa88de7e08204b5667614ce30d
# =====================================

"""
Expand All @@ -10,7 +10,7 @@

DESCRIPTION = "A collection of core Python utilities."
PKG_NAME = "vcorelib"
VERSION = "3.4.3"
VERSION = "3.4.4"

# vcorelib-specific content.
DEFAULT_INDENT = 2
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion vcorelib/io/markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def default_markdown() -> str:

# This path gets hit even when reaching 'MarkdownMixin' due to the
# singleton 'package' variable (only one package is searched)
return read_resource("md", "MarkdownMixin.md")
return read_resource("md", "default.md")


class MarkdownMixin:
Expand Down

0 comments on commit 94302ac

Please sign in to comment.