Skip to content

Commit e22198b

Browse files
shirasassoonShira Sassoon
andauthored
v0.3.1 (#873)
This pull request addresses a bug related to the override behavior of feature flags and constants during config deployment, and also prepares the project for a new release (`v0.3.1`). The main focus is on ensuring that feature flags and constants are correctly overridden as expected during deployment. Additionally, version numbers and changelogs have been updated to reflect this fix. **Bug Fixes:** * Fixed the override behavior of feature flags and constants in config deployment to ensure correct application of overrides. **Release and Documentation Updates:** * Bumped the `VERSION` constant in `constants.py` from `0.3.0` to `0.3.1` to mark the new release. * Added a new entry for version `v0.3.1` in both `.changes/v0.3.1.md` and `docs/changelog.md`, describing the bug fix and referencing the relevant issue and author. [[1]](diffhunk://#diff-e7efe824faf437ec99931ec2e292a8a13647f841238100ddca52a17ac4420f47R1-R5) [[2]](diffhunk://#diff-77f023b99d3d58008351d3e82fc06e6d06ba1bc2da9e41be6329b7fa4f419f05R3-R8) --------- Co-authored-by: Shira Sassoon <shirasassoon@microsoft.com>
1 parent 7400852 commit e22198b

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.changes/unreleased/fixed-20260311-110454.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changes/v0.3.1.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## [v0.3.1](https://pypi.org/project/fabric-cicd/0.3.1) - March 12, 2026
2+
3+
### 🔧 Bug Fix
4+
5+
- Fix override behavior of feature flags and constants in config deployment by [shirasassoon](https://github.com/shirasassoon) ([#872](https://github.com/microsoft/fabric-cicd/issues/872))

docs/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [v0.3.1](https://pypi.org/project/fabric-cicd/0.3.1) - March 12, 2026
4+
5+
### 🔧 Bug Fix
6+
7+
- Fix override behavior of feature flags and constants in config deployment by [shirasassoon](https://github.com/shirasassoon) ([#872](https://github.com/microsoft/fabric-cicd/issues/872))
8+
39
## [v0.3.0](https://pypi.org/project/fabric-cicd/0.3.0) - March 09, 2026
410

511
### ✨ New Functionality

src/fabric_cicd/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from fabric_cicd._common._validate_env_vars import validate_env_var_api_url
1010

1111
# General
12-
VERSION = "0.3.0"
12+
VERSION = "0.3.1"
1313
DEFAULT_GUID = "00000000-0000-0000-0000-000000000000"
1414
FEATURE_FLAG = set()
1515
USER_AGENT = f"ms-fabric-cicd/{VERSION}"

0 commit comments

Comments
 (0)