Skip to content

Commit 12d7831

Browse files
committed
feat: added better support for .adoc .mdx and .rst files
1 parent 7362462 commit 12d7831

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,27 @@ extend-exclude = '''
2222

2323
[project]
2424
name = "codemapper"
25-
version = "4.0.1"
25+
version = "4.1.0"
2626
description = "A tool to generate comprehensive Markdown artifacts of directory structures and file contents"
2727
readme = "README.md"
2828
requires-python = ">=3.10"
2929
license = { file = "LICENSE" }
3030
authors = [
31-
{ name = "Shane Holloman", email = "shaneholloman@gmail.com" }
31+
{ name = "Shane Holloman", email = "shaneholloman@gmail.com" },
3232
]
3333
classifiers = [
34-
"Development Status :: 4 - Beta",
35-
"Intended Audience :: Developers",
36-
"License :: OSI Approved :: MIT License",
37-
"Operating System :: OS Independent",
38-
"Programming Language :: Python :: 3.10",
39-
"Programming Language :: Python :: 3.11",
40-
"Programming Language :: Python :: 3.12"
34+
"Development Status :: 4 - Beta",
35+
"Intended Audience :: Developers",
36+
"License :: OSI Approved :: MIT License",
37+
"Operating System :: OS Independent",
38+
"Programming Language :: Python :: 3.10",
39+
"Programming Language :: Python :: 3.11",
40+
"Programming Language :: Python :: 3.12",
4141
]
4242
keywords = ["codemapper", "markdown", "directory", "file contents"]
4343
dependencies = [
44-
"chardet",
45-
"pathspec"
44+
"chardet",
45+
"pathspec",
4646
]
4747
[project.urls]
4848
"Homepage" = "https://github.com/shaneholloman/codemapper"

src/codemapper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
creating detailed Markdown documentation of their structure and contents.
1212
"""
1313

14-
__version__ = "4.0.1"
14+
__version__ = "4.1.0"
1515

1616
# Any other necessary imports or package-level code can go here

0 commit comments

Comments
 (0)