Spaces:
Runtime error
Runtime error
Merge pull request #38 from mayureshagashe2105/main
Browse files- techdocs/pyproject.toml +1 -1
- techdocs/setup.cfg +1 -1
- techdocs/setup.py +1 -1
- techdocs/techdocs/__init__.py +1 -1
techdocs/pyproject.toml
CHANGED
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|
7 |
|
8 |
[project]
|
9 |
name = "techdocs"
|
10 |
-
version = "0.1.
|
11 |
description = "Code documentation generation CLI App"
|
12 |
readme = "README.md"
|
13 |
requires-python = ">=3.10"
|
|
|
7 |
|
8 |
[project]
|
9 |
name = "techdocs"
|
10 |
+
version = "0.1.5"
|
11 |
description = "Code documentation generation CLI App"
|
12 |
readme = "README.md"
|
13 |
requires-python = ">=3.10"
|
techdocs/setup.cfg
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
[metadata]
|
2 |
name = techdocs
|
3 |
-
version = 0.1.
|
4 |
|
5 |
[options]
|
6 |
packages = techdocs
|
|
|
1 |
[metadata]
|
2 |
name = techdocs
|
3 |
+
version = 0.1.5
|
4 |
|
5 |
[options]
|
6 |
packages = techdocs
|
techdocs/setup.py
CHANGED
@@ -4,7 +4,7 @@ import glob
|
|
4 |
|
5 |
setup(
|
6 |
name='techdocs',
|
7 |
-
version='0.1.
|
8 |
# To provide executable scripts, use entry points in preference to the
|
9 |
# "scripts" keyword. Entry points provide cross-platform support and allow
|
10 |
# pip to create the appropriate form of executable for the target platform.
|
|
|
4 |
|
5 |
setup(
|
6 |
name='techdocs',
|
7 |
+
version='0.1.5',
|
8 |
# To provide executable scripts, use entry points in preference to the
|
9 |
# "scripts" keyword. Entry points provide cross-platform support and allow
|
10 |
# pip to create the appropriate form of executable for the target platform.
|
techdocs/techdocs/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1 |
-
__version__ = "0.1.
|
|
|
1 |
+
__version__ = "0.1.5"
|