-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically generated by python-semantic-release
- Loading branch information
semantic-release
committed
Jun 11, 2024
1 parent
20c4fa2
commit 7a0110e
Showing
3 changed files
with
44 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,48 @@ | |
|
||
|
||
|
||
## v0.3.0 (2024-06-11) | ||
|
||
### Breaking | ||
|
||
* feat!: support syntaxless-api (#47) ([`415d6f1`](https://github.com/xability/py_maidr/commit/415d6f1c2c9bf3f62b29da1dd752cb34a18168a3)) | ||
|
||
### Chore | ||
|
||
* chore(deps-dev): bump black from 23.3.0 to 24.3.0 (#45) | ||
|
||
Bumps [black](https://github.com/psf/black) from 23.3.0 to 24.3.0. | ||
- [Release notes](https://github.com/psf/black/releases) | ||
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) | ||
- [Commits](https://github.com/psf/black/compare/23.3.0...24.3.0) | ||
|
||
--- | ||
updated-dependencies: | ||
- dependency-name: black | ||
dependency-type: direct:development | ||
... | ||
|
||
Signed-off-by: dependabot[bot] <[email protected]> | ||
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> ([`53818c9`](https://github.com/xability/py_maidr/commit/53818c9478301376461e64d1cf5a5d32ef730df2)) | ||
|
||
### Ci | ||
|
||
* ci: add workflow for publishing docs (#44) | ||
|
||
`docs.yml` automates the publishing of py-maidr documentation to GitHub Pages. This builds the | ||
static sources using `quarto` for the website and `quartodoc` for the API Reference. | ||
The rendering and publishing are accomplished using Quarto's github actions, which can be found | ||
at https://github.com/quarto-dev/quarto-actions. | ||
|
||
Resolves: #43 ([`a6c5886`](https://github.com/xability/py_maidr/commit/a6c5886cc66339eabdfac3c8dc8bb10ee2c037c6)) | ||
|
||
### Fix | ||
|
||
* fix: black formatting ci (#49) ([`20c4fa2`](https://github.com/xability/py_maidr/commit/20c4fa231bd5a78679cce7698d2a42077c97f330)) | ||
|
||
* fix: remove docs (#48) ([`9b8cae5`](https://github.com/xability/py_maidr/commit/9b8cae5c1e4071be6edbfdbab8f4b498516f9caf)) | ||
|
||
|
||
## v0.2.0 (2024-05-16) | ||
|
||
### Ci | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.2.0" | ||
__version__ = "0.3.0" | ||
|
||
from .core import Maidr | ||
from .core.enum import PlotType | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ authors = [ | |
"JooYoung Seo <[email protected]>", | ||
"Saairam Venkatesh <[email protected]>" | ||
] | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
classifiers = [ | ||
"Intended Audience :: End Users/Desktop", | ||
"Intended Audience :: Financial and Insurance Industry", | ||
|