What’s Changed
**Breaking change in this release:** The package `exchange_calendars_extensions` is now a namespace package that has been split into two sub-packages, `exchange_calendars_extensions.core` and `exchange_calendars_extensions.api`.
The new distribution package [`exchange_calendars_extensions_api`](https://github.com/jenskeiner/exchange_calendars_extensions_api) consists of the sub-package `exchange_calendars_extensions.api` that splits out some API classes for calendar adjustments so they can be used without the core package and its dependencies.
The distribution package `exchange_calendars_extensions`, i.e. this project, keeps the rest in the `exchange_calendars_extensions.core` sub-package. It also has a dependency on `exchange_calendars_extensions_api` and still exports the items from there that were previously exported.
This means that the only code change required is to change imports from `exchange_calendars_extensions` to `exchange_calendars_extensions.core`.
Changed
* Split package and move changes API classes to separate package. (43) jenskeiner