Skip to content

Commit

Permalink
Bump version to 0.2.1 in Project.toml
Browse files Browse the repository at this point in the history
Refactor coordinate_example.jl: Remove CoordinatePoint material and update camera initialization
  • Loading branch information
dominic-chang committed Oct 4, 2024
1 parent 6c6ca27 commit 8c6ae4b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Krang"
uuid = "54806c32-d51a-438d-8447-e0041be2fbfb"
authors = ["Dominic <dchang3419@hotmail.com> and contributors"]
version = "0.2.0"
version = "0.2.1"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
1 change: 0 additions & 1 deletion examples/coordinate_example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ axes_list = [
# Initialize Camera and Pre-Allocate Memory for data to be plotted
coordinates = (zeros(sze, sze) for _ in 1:3)
camera = Krang.SlowLightIntensityCamera(metric, θo, -ρmax, ρmax, -ρmax, ρmax, sze, A=Matrix);
material = Krang.CoordinatePoint();
colormaps = (:afmhot, :afmhot, :hsv)
colorrange = ((-20, 20), (0, rmax), (0, 2π))

Expand Down

2 comments on commit 8c6ae4b

@dominic-chang
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/116616

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 v0.2.1 -m "<description of version>" 8c6ae4b5cef10744abd393fe51dac10d05ec250a
git push origin v0.2.1

Please sign in to comment.