Skip to content

Commit

Permalink
Merge pull request #28 from sailpoint-oss/fix/versionBumpScript
Browse files Browse the repository at this point in the history
Update bump version script to include latest release
  • Loading branch information
tyler-mairose-sp authored Aug 6, 2024
2 parents 624bfdf + d530d57 commit f1b7ad7
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/bump_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ jobs:
run: |
yq -i '.packageVersion = "${{ github.event.inputs.version }}"' sdk-resources/beta-config.yaml
yq -i '.packageVersion = "${{ github.event.inputs.version }}"' sdk-resources/v3-config.yaml
yq -i '.packageVersion = "${{ github.event.inputs.version }}"' sdk-resources/v2024-config.yaml
Expand Down
2 changes: 1 addition & 1 deletion sailpoint/v2024/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "1.0.4"
__version__ = "1.1.6"

# import apis into sdk package
from sailpoint.v2024.api.access_model_metadata_api import AccessModelMetadataApi
Expand Down
2 changes: 1 addition & 1 deletion sailpoint/v2024/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/1.0.4/python'
self.user_agent = 'OpenAPI-Generator/1.1.6/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion sailpoint/v2024/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v2024\n"\
"SDK Package Version: 1.0.4".\
"SDK Package Version: 1.1.6".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion sailpoint/v2024/test/test_account_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def make_instance(self, include_optional) -> AccountUsage:
model = AccountUsage()
if include_optional:
return AccountUsage(
var_date = 'Fri Apr 21 00:00:00 UTC 2023',
var_date = 'Thu Apr 20 20:00:00 EDT 2023',
count = 10
)
else:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def make_instance(self, include_optional) -> NonEmployeeRequestWithoutApprovalIt
approval_status = 'APPROVED',
comment = 'approved',
completion_date = '2020-03-24T11:11:41.139-05:00',
start_date = 'Tue Mar 24 00:00:00 UTC 2020',
end_date = 'Thu Mar 25 00:00:00 UTC 2021',
start_date = 'Mon Mar 23 20:00:00 EDT 2020',
end_date = 'Wed Mar 24 20:00:00 EDT 2021',
modified = '2020-03-24T11:11:41.139-05:00',
created = '2020-03-24T11:11:41.139-05:00'
)
Expand Down
2 changes: 1 addition & 1 deletion sailpoint/v2024/test/test_source_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def make_instance(self, include_optional) -> SourceUsage:
model = SourceUsage()
if include_optional:
return SourceUsage(
var_date = 'Fri Apr 21 00:00:00 UTC 2023',
var_date = 'Thu Apr 20 20:00:00 EDT 2023',
count = 10.45
)
else:
Expand Down
2 changes: 1 addition & 1 deletion sailpoint/v2024_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Use these APIs to interact with the Identity Security Cloud platform to achieve
The `sailpoint.v2024` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v2024
- Package version: 1.0.4
- Package version: 1.1.6
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://developer.sailpoint.com/discuss/api-help](https://developer.sailpoint.com/discuss/api-help)

Expand Down
2 changes: 1 addition & 1 deletion sdk-resources/v2024-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
templateDir: ./sdk-resources/resources
packageName: sailpoint.v2024
packageVersion: 1.0.4
packageVersion: 1.1.6
apiVersion: v2024
generateSourceCodeOnly: true

0 comments on commit f1b7ad7

Please sign in to comment.