diff --git a/CHANGELOG.md b/CHANGELOG.md index c4c41f79aa..055194fcdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,31 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm -# Port_Ocean 0.1.0 (2023-07-20) +0.1.1 (2023-07-26) +================== + +### Breaking Changes + +- Changed SAMPLE event listener to POLLING. (Make sure to update your `eventListener.type` field in your `config.yaml` for the integration) (PORT-4346) + +### Improvements + +- Seperated the cli commands to multiple files under the `port_ocean/cli/commands` folder (PORT-4303) +- Improved error messages from the PortClient (PORT-4337) + +### Bug Fixes + +- Fixed Webhook event listener not triggering +- Fixed PortClient using httpx async client from another event loop + + (PORT-4306) +- Fixed `ocean new` jinja crash for the config.yaml in the scaffold (PORT-4328) +- Fixed issue where the integration did not create the integration config on creation (PORT-4341) +- Fixed an issue with initializePortResources that caused failure for unknown file names on init (PORT-4343) + + +0.1.0 (2023-07-20) +================== ### Features diff --git a/changelog/PORT-4303.improvement.md b/changelog/PORT-4303.improvement.md deleted file mode 100644 index be3f186a63..0000000000 --- a/changelog/PORT-4303.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Seperated the cli commands to multiple files under the `port_ocean/cli/commands folder` \ No newline at end of file diff --git a/changelog/PORT-4306.bugfix.md b/changelog/PORT-4306.bugfix.md deleted file mode 100644 index 57007fd3cc..0000000000 --- a/changelog/PORT-4306.bugfix.md +++ /dev/null @@ -1,2 +0,0 @@ -- Fixed Webhook event listener not triggering -- Fixed PortClient using httpx async client from another event loop \ No newline at end of file diff --git a/changelog/PORT-4328.bugfix.md b/changelog/PORT-4328.bugfix.md deleted file mode 100644 index c348122be6..0000000000 --- a/changelog/PORT-4328.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed `ocean new` jinja crash for the config.yaml in the scaffold \ No newline at end of file diff --git a/changelog/PORT-4337.improvement.md b/changelog/PORT-4337.improvement.md deleted file mode 100644 index f6a2ef0cd7..0000000000 --- a/changelog/PORT-4337.improvement.md +++ /dev/null @@ -1 +0,0 @@ -Improved error messages from the PortClient \ No newline at end of file diff --git a/changelog/PORT-4341.bugfix.md b/changelog/PORT-4341.bugfix.md deleted file mode 100644 index 78733b0c68..0000000000 --- a/changelog/PORT-4341.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed issue where the integration did not create the integration config on creation \ No newline at end of file diff --git a/changelog/PORT-4343.bugfix.md b/changelog/PORT-4343.bugfix.md deleted file mode 100644 index dddabbe4e9..0000000000 --- a/changelog/PORT-4343.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed an issue with initializePortResources that caused failure for unknown file nmaes on init \ No newline at end of file diff --git a/changelog/PORT-4346.breaking.md b/changelog/PORT-4346.breaking.md deleted file mode 100644 index f4912aebed..0000000000 --- a/changelog/PORT-4346.breaking.md +++ /dev/null @@ -1 +0,0 @@ -Changed SAMPLE event listener to POLLING. (Make sure to update your eventListener.type field in your config.yaml for the integration) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 88f66bae15..3079bbb254 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.1.0" +version = "0.1.1" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io" @@ -71,6 +71,8 @@ towncrier = "^23.6.0" [tool.towncrier] directory = "changelog" filename = "CHANGELOG.md" +title_format = "{version} ({project_date})" +package_dir = "." package = "port_ocean" [[tool.towncrier.type]]