diff --git a/.changes/unreleased/ENHANCEMENTS-20230925-190924.yaml b/.changes/unreleased/ENHANCEMENTS-20230925-190924.yaml deleted file mode 100644 index ec66d9d..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20230925-190924.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: FEATURES -body: 'policies/organizationcontrols: Add OrganizationControlsPolicy CRUD and add - mfaDuration to the OrganizationControlsPolicy type' -time: 2023-09-25T19:09:24.163112-04:00 -custom: - Issues: "36" diff --git a/.changes/unreleased/ENHANCEMENTS-20231011-122738.yaml b/.changes/unreleased/ENHANCEMENTS-20231011-122738.yaml deleted file mode 100644 index c2fdee8..0000000 --- a/.changes/unreleased/ENHANCEMENTS-20231011-122738.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: ENHANCEMENTS -body: 'targets/database: Add new field DatabaseAuthenticationConfig and deprecate - SplitCert and DatabaseType' -time: 2023-10-11T12:27:38.297052484-05:00 -custom: - Issues: "40" diff --git a/.changes/unreleased/FEATURES-20231006-135721.yaml b/.changes/unreleased/FEATURES-20231006-135721.yaml deleted file mode 100644 index 9cba31d..0000000 --- a/.changes/unreleased/FEATURES-20231006-135721.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: FEATURES -body: 'targets/database: Add support for GET list of database authentication configs' -time: 2023-10-06T13:57:21.309141752-05:00 -custom: - Issues: "40" diff --git a/.changes/v0.9.0.md b/.changes/v0.9.0.md new file mode 100644 index 0000000..f2a3ca3 --- /dev/null +++ b/.changes/v0.9.0.md @@ -0,0 +1,17 @@ +## v0.9.0 (October 18, 2023) + +FEATURES: + + +* policies/organizationcontrols: Add OrganizationControlsPolicy CRUD and add mfaDuration to the OrganizationControlsPolicy type ([#36](https://github.com/bastionzero/bastionzero-sdk-go/issues/36)). + + +* targets/database: Add support for GET list of database authentication configs ([#40](https://github.com/bastionzero/bastionzero-sdk-go/issues/40)). + + +ENHANCEMENTS: + + +* targets/database: Add new field DatabaseAuthenticationConfig and deprecate SplitCert and DatabaseType ([#40](https://github.com/bastionzero/bastionzero-sdk-go/issues/40)). + + diff --git a/CHANGELOG.md b/CHANGELOG.md index 793c13a..9f55eac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## v0.9.0 (October 18, 2023) + +FEATURES: + + +* policies/organizationcontrols: Add OrganizationControlsPolicy CRUD and add mfaDuration to the OrganizationControlsPolicy type ([#36](https://github.com/bastionzero/bastionzero-sdk-go/issues/36)). + + +* targets/database: Add support for GET list of database authentication configs ([#40](https://github.com/bastionzero/bastionzero-sdk-go/issues/40)). + + +ENHANCEMENTS: + + +* targets/database: Add new field DatabaseAuthenticationConfig and deprecate SplitCert and DatabaseType ([#40](https://github.com/bastionzero/bastionzero-sdk-go/issues/40)). + + ## v0.8.0 (September 27, 2023) FEATURES: diff --git a/bastionzero/bastionzero.go b/bastionzero/bastionzero.go index 132596b..dc20037 100644 --- a/bastionzero/bastionzero.go +++ b/bastionzero/bastionzero.go @@ -34,7 +34,7 @@ import ( ) const ( - libraryVersion = "v0.8.0" + libraryVersion = "v0.9.0" // DefaultBaseURL is the default BastionZero API URL the Client communicates // with DefaultBaseURL = "https://cloud.bastionzero.com/"