Skip to content

Commit

Permalink
build(release): 1.0.0
Browse files Browse the repository at this point in the history
# [1.0.0](v0.2.0...v1.0.0) (2024-04-26)

### Bug Fixes

* **diagram:** re-enable automatic JPEG rendering through `Base.show` ([131f93f](131f93f))
* replace JPEG with PDF output for PlantUML and Structurizr ([6d219cf](6d219cf)), closes [yuzutech/kroki#1536](yuzutech/kroki#1536)

### Features

* **service:** enable configuration of the Kroki version ([ff03e66](ff03e66))
* support D2 diagrams ([134bfcd](134bfcd)), closes [#42](#42)
* support DBML diagrams ([c03743a](c03743a)), closes [#42](#42)
* support Symbolator diagrams ([c30714e](c30714e)), closes [#42](#42)
* support Tikz/PGF plots ([59f4008](59f4008)), closes [#46](#46)
* support WireViz diagrams ([04addeb](04addeb)), closes [#42](#42)
  • Loading branch information
semantic-release-bot committed Apr 26, 2024
1 parent f0af069 commit 230436d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

# [1.0.0](https://github.com/bauglir/Kroki.jl/compare/v0.2.0...v1.0.0) (2024-04-26)


### Bug Fixes

* **diagram:** re-enable automatic JPEG rendering through `Base.show` ([131f93f](https://github.com/bauglir/Kroki.jl/commit/131f93f60e5d57209054bb294cccf6b9c3258612))
* replace JPEG with PDF output for PlantUML and Structurizr ([6d219cf](https://github.com/bauglir/Kroki.jl/commit/6d219cf90b8c2aa38593f23781b22a2277e29d7a)), closes [yuzutech/kroki#1536](https://github.com/yuzutech/kroki/issues/1536)


### Features

* **service:** enable configuration of the Kroki version ([ff03e66](https://github.com/bauglir/Kroki.jl/commit/ff03e6698fbf07c1075c75deca735b48ef55399f))
* support D2 diagrams ([134bfcd](https://github.com/bauglir/Kroki.jl/commit/134bfcd7bcfb7c93f7e75c635a81387c8200fb89)), closes [#42](https://github.com/bauglir/Kroki.jl/issues/42)
* support DBML diagrams ([c03743a](https://github.com/bauglir/Kroki.jl/commit/c03743ac2d442f884a77364d43ee089ee19666be)), closes [#42](https://github.com/bauglir/Kroki.jl/issues/42)
* support Symbolator diagrams ([c30714e](https://github.com/bauglir/Kroki.jl/commit/c30714e73dab07b1eb631c36f4b8ab02a62b787f)), closes [#42](https://github.com/bauglir/Kroki.jl/issues/42)
* support Tikz/PGF plots ([59f4008](https://github.com/bauglir/Kroki.jl/commit/59f400849839ed4d71a5f1002efd5ef1df4db40e)), closes [#46](https://github.com/bauglir/Kroki.jl/issues/46)
* support WireViz diagrams ([04addeb](https://github.com/bauglir/Kroki.jl/commit/04addebe3e7c3acf466ec2b94a9a1832f885ac89)), closes [#42](https://github.com/bauglir/Kroki.jl/issues/42)

# [0.2.0](https://github.com/bauglir/Kroki.jl/compare/v0.1.0...v0.2.0) (2022-07-26)


Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Kroki"
uuid = "b3565e16-c1f2-4fe9-b4ab-221c88942068"
authors = ["Joris Kraak <[email protected]>"]
version = "0.2.0"
version = "1.0.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down

2 comments on commit 230436d

@bauglir
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register branch=v1.0.0

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/105693

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" 230436dfb94f5ed224de387eaadc6f330721a032
git push origin v1.0.0

Please sign in to comment.