File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
8
8
<!-- towncrier release notes start -->
9
9
10
+ ## 0.15.1 (2024-15-12)
11
+
12
+ ### Bug Fixes
13
+
14
+ - Changed ` SaasOauth ` runtime to ` SaasOauth2 `
15
+
16
+
10
17
## 0.15.0 (2024-12-12)
11
18
12
19
### Features
Original file line number Diff line number Diff line change 8
8
9
9
class Runtime (Enum ):
10
10
Saas = "Saas"
11
- SaasOauth = "SaasOauth "
11
+ SaasOauth2 = "SaasOauth2 "
12
12
OnPrem = "OnPrem"
13
13
14
14
@property
15
15
def is_saas_runtime (self ) -> bool :
16
- return self in [Runtime .Saas , Runtime .SaasOauth ]
16
+ return self in [Runtime .Saas , Runtime .SaasOauth2 ]
17
17
18
18
19
19
class Entity (BaseModel ):
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " port-ocean"
3
- version = " 0.15.0 "
3
+ version = " 0.15.1 "
4
4
description = " Port Ocean is a CLI tool for managing your Port projects."
5
5
readme = " README.md"
6
6
homepage = " https://app.getport.io"
You can’t perform that action at this time.
0 commit comments