Skip to content

Commit fd4f054

Browse files
ayeshurunAlon Yeshurun
andauthored
chore(release): v1.3.1 (#94)
Co-authored-by: Alon Yeshurun <alonyeshurun+microsoft@microsoft.com>
1 parent f3370b0 commit fd4f054

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [v1.3.0](https://pypi.org/project/ms-fabric-cli/v1.3.0) - December 15, 2025
1+
## [v1.3.1](https://pypi.org/project/ms-fabric-cli/v1.3.1) - December 15, 2025
22

33
### ✨ New Functionality
44

docs/commands/jobs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The `job` commands provide tools for starting, running, monitoring, and scheduli
2020
| `job run-status`| Get job run details | `job run-status <path> [--id <id>] [--schedule]` |
2121
| `job run-sch` | Schedule a job | `job run-sch <path> [-i <json_inline_or_path>*] [--type <type>] [--interval <interval>] [--days <days>]` |
2222
| `job run-update`| Update a scheduled job | `job run-update <path> [--id <id>] [-i <json_inline_or_path>] [--type <type>] [--enable/--disable]` |
23+
| `job run-rm` | Delete a scheduled job | `job run-rm <path> [--id <scheduled-id>] [--force]` |
2324

2425
---
2526

docs/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ hide:
66
# Release Notes
77

88

9-
## [v1.3.0](https://pypi.org/project/ms-fabric-cli/v1.3.0) - December 15, 2025
9+
## [v1.3.1](https://pypi.org/project/ms-fabric-cli/v1.3.1) - December 15, 2025
1010

1111
### ✨ New Functionality
1212

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name="ms-fabric-cli"
77
authors = [
88
{ name = "Microsoft Corporation" },
99
]
10-
version="1.3.0"
10+
version="1.3.1"
1111
description="Command-line tool for Microsoft Fabric"
1212
readme="README.md"
1313
requires-python=">=3.10,<3.13"

src/fabric_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Licensed under the MIT License.
33

44
# Don't change this
5-
__version__ = "1.3.0"
5+
__version__ = "1.3.1"

src/fabric_cli/core/fab_constant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
WEB_URI = "https://app.powerbi.com/groups"
2828

2929
# Versioning
30-
FAB_VERSION = "1.3.0" # change pyproject.toml version too, this must be aligned
30+
FAB_VERSION = "1.3.1" # change pyproject.toml version too, this must be aligned
3131

3232
# Scopes
3333
SCOPE_FABRIC_DEFAULT = ["https://analysis.windows.net/powerbi/api/.default"]

0 commit comments

Comments
 (0)