Skip to content

Commit 64b1670

Browse files
authored
Merge pull request #935 from m-kovalsky/m-kovalsky/934
934
2 parents 8e6f442 + ab5035e commit 64b1670

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Semantic Link Labs
22

33
[![PyPI version](https://badge.fury.io/py/semantic-link-labs.svg)](https://badge.fury.io/py/semantic-link-labs)
4-
[![Read The Docs](https://readthedocs.org/projects/semantic-link-labs/badge/?version=0.12.5&style=flat)](https://readthedocs.org/projects/semantic-link-labs/)
4+
[![Read The Docs](https://readthedocs.org/projects/semantic-link-labs/badge/?version=0.12.6&style=flat)](https://readthedocs.org/projects/semantic-link-labs/)
55
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
66
[![Downloads](https://static.pepy.tech/badge/semantic-link-labs)](https://pepy.tech/project/semantic-link-labs)
77

@@ -129,6 +129,7 @@ An even better way to ensure the semantic-link-labs library is available in your
129129
2. Select your newly created environment within the 'Environment' drop down in the navigation bar at the top of the notebook
130130

131131
## Version History
132+
* [0.12.6](https://github.com/microsoft/semantic-link-labs/releases/tag/0.12.6) (October 30, 2025)
132133
* [0.12.5](https://github.com/microsoft/semantic-link-labs/releases/tag/0.12.5) (October 30, 2025)
133134
* [0.12.4](https://github.com/microsoft/semantic-link-labs/releases/tag/0.12.4) (October 16, 2025)
134135
* [0.12.3](https://github.com/microsoft/semantic-link-labs/releases/tag/0.12.3) (September 17, 2025)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
project = 'semantic-link-labs'
1414
copyright = '2024, Microsoft and community'
1515
author = 'Microsoft and community'
16-
release = '0.12.5'
16+
release = '0.12.6'
1717

1818
# -- General configuration ---------------------------------------------------
1919
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name="semantic-link-labs"
77
authors = [
88
{ name = "Microsoft Corporation" },
99
]
10-
version="0.12.5"
10+
version="0.12.6"
1111
description="Semantic Link Labs for Microsoft Fabric"
1212
readme="README.md"
1313
requires-python=">=3.10,<3.12"

src/sempy_labs/_a_lib_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
lib_name = "semanticlinklabs"
2-
lib_version = "0.12.5"
2+
lib_version = "0.12.6"

src/sempy_labs/admin/_artifacts.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
import pandas as pd
2-
from .._helper_functions import (
2+
from sempy_labs._helper_functions import (
33
_base_api,
4-
)
5-
from uuid import UUID
6-
from typing import Optional
7-
from ._basic_functions import (
8-
_resolve_workspace_name_and_id,
94
_create_dataframe,
105
_update_dataframe_datatypes,
116
)
7+
from uuid import UUID
8+
from typing import Optional
9+
from sempy_labs.admin._basic_functions import _resolve_workspace_name_and_id
1210
from sempy._utils._log import log
1311

1412

0 commit comments

Comments
 (0)