Skip to content

Commit a6a2526

Browse files
author
Tom Softreck
committed
Release version 0.1.42
1 parent a3aa65d commit a6a2526

5 files changed

Lines changed: 22 additions & 24 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.42] - 2025-04-16
6+
57
## [0.1.41] - 2025-04-16
68

79
### Added

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Configuration setup
1919
setup(
2020
name="pyfunc2",
21-
version="0.1.39",
21+
version="0.1.40",
2222
description="libs for cameramonit, ocr, fin-officer, cfo, and other projects",
2323
long_description=LONG_DESCRIPTION,
2424
long_description_content_type="text/markdown",

setup.py.bak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ except FileNotFoundError:
1818
# Configuration setup
1919
setup(
2020
name="pyfunc2",
21-
version="0.1.38",
21+
version="0.1.39",
2222
description="libs for cameramonit, ocr, fin-officer, cfo, and other projects",
2323
long_description=LONG_DESCRIPTION,
2424
long_description_content_type="text/markdown",

src/pyfunc2/function/__init__.py

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
# Auto-generated __init__.py
22

33
# Version of the pyfunc2 package
4-
import sys
5-
sys.path.append('../')
6-
from ._version import __version__
4+
__version__ = "0.1.0"
75

86
# Import necessary modules and functions here
9-
from flat_array import flat_array
10-
from get_domain_from_url import get_domain_from_url
11-
from get_subdomain_from_url import get_subdomain_from_url
12-
from arrayElementsAreIncluded import arrayElementsAreIncluded
13-
from differenceElementsInArrays import differenceElementsInArrays
14-
from extract_domain_name_from_url import extract_domain_name_from_url
7+
from .flat_array import flat_array
8+
from .get_domain_from_url import get_domain_from_url
9+
from .get_subdomain_from_url import get_subdomain_from_url
10+
from .arrayElementsAreIncluded import arrayElementsAreIncluded
11+
from .differenceElementsInArrays import differenceElementsInArrays
12+
from .extract_domain_name_from_url import extract_domain_name_from_url
1513

1614
# Public API of the package
1715
__all__ = [flat_array, get_domain_from_url, get_subdomain_from_url, arrayElementsAreIncluded, differenceElementsInArrays, extract_domain_name_from_url]

src/pyfunc2/markdown/__init__.py

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
# Auto-generated __init__.py
22

33
# Version of the pyfunc2 package
4-
import sys
5-
sys.path.append('../')
6-
from ._version import __version__
4+
__version__ = "0.1.0"
75

86
# Import necessary modules and functions here
9-
from create_dir_structure import create_dir_structure
10-
from create_dir_structure import test
11-
from create_dir_structure_from_headers import create_dir_structure_from_headers
12-
from create_folders_files import create_folders_files
13-
from get_code_extension_dict import get_code_extension_dict
14-
from get_dictionary_structure_by_separator_list import get_dictionary_structure_by_separator_list2
15-
from get_dictionary_structure_by_separator_list import get_dictionary_structure_by_separator_list
16-
from get_dictionary_structure_from_headers_content import get_dictionary_structure_from_headers_content
17-
from get_header_list import get_header_list
18-
from get_url_list import get_url_list
7+
from .create_dir_structure import create_dir_structure
8+
from .create_dir_structure import test
9+
from .create_dir_structure_from_headers import create_dir_structure_from_headers
10+
from .create_folders_files import create_folders_files
11+
from .get_code_extension_dict import get_code_extension_dict
12+
from .get_dictionary_structure_by_separator_list import get_dictionary_structure_by_separator_list2
13+
from .get_dictionary_structure_by_separator_list import get_dictionary_structure_by_separator_list
14+
from .get_dictionary_structure_from_headers_content import get_dictionary_structure_from_headers_content
15+
from .get_header_list import get_header_list
16+
from .get_url_list import get_url_list
1917

2018
# Public API of the package
2119
__all__ = [create_dir_structure, test, create_dir_structure_from_headers, create_folders_files, get_code_extension_dict, get_dictionary_structure_by_separator_list2, get_dictionary_structure_by_separator_list, get_dictionary_structure_from_headers_content, get_header_list, get_url_list]

0 commit comments

Comments
 (0)