-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #209 from normal-wls/feature_component_support_def…
…ault_version_3.24lts feature: 插件支持默认版本标记
- Loading branch information
Showing
5 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
|
||
default_app_config = "pipeline.apps.PipelineConfig" | ||
|
||
__version__ = "3.24.1" | ||
__version__ = "3.24.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...ipeline/pipeline/component_framework/migrations/0008_componentmodel_is_default_version.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.15 on 2023-12-07 13:27 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('component_framework', '0007_auto_20201112_2244'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='componentmodel', | ||
name='is_default_version', | ||
field=models.BooleanField(default=False, verbose_name='是否是默认版本'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "bamboo-pipeline" | ||
version = "3.24.3" | ||
version = "3.24.4" | ||
description = "runtime for bamboo-engine base on Django and Celery" | ||
authors = ["homholueng <[email protected]>"] | ||
license = "MIT" | ||
|