-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
Release v0.2
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "TrixiParticles" | ||
uuid = "66699cd8-9c01-4e9d-a059-b96c86d16b3a" | ||
authors = ["erik.faulhaber <[email protected]>"] | ||
version = "0.1.4-dev" | ||
version = "0.2.0" | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
[deps] | ||
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" | ||
|
@@ -11,7 +11,7 @@ Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | |
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def" | ||
FastPow = "c0e83750-1142-43a8-81cf-6c956b72b4d1" | ||
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" | ||
GPUArrays = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7" | ||
GPUArraysCore = "46192b85-c4d5-4398-a991-12ede77f4527" | ||
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" | ||
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
|
@@ -35,11 +35,11 @@ DataFrames = "1.6" | |
DiffEqCallbacks = "2.25, 3" | ||
FastPow = "0.1" | ||
ForwardDiff = "0.10" | ||
GPUArrays = "9, 10" | ||
GPUArraysCore = "0.1" | ||
JSON = "0.21" | ||
KernelAbstractions = "0.9" | ||
MuladdMacro = "0.2" | ||
PointNeighbors = "0.2.3" | ||
PointNeighbors = "0.4.2" | ||
Polyester = "0.7.5" | ||
RecipesBase = "1" | ||
Reexport = "1" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed" | ||
PointNeighbors = "1c4d5385-0a27-49de-8e2c-43b175c8985c" | ||
TrixiBase = "9a0f1c46-06d5-4909-a5a3-ce25d3fa3284" | ||
|
||
[compat] | ||
Documenter = "1" | ||
OrdinaryDiffEq = "6" | ||
PointNeighbors = "0.4" | ||
TrixiBase = "0.1" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# PointNeighbors.jl API | ||
|
||
```@meta | ||
CurrentModule = PointNeighbors | ||
``` | ||
|
||
```@autodocs | ||
Modules = [PointNeighbors] | ||
``` |
1 comment
on commit 166ed4e
There was a problem hiding this comment.
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/110749
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.0 -m "<description of version>" 166ed4eb4a90d19cbaf8ae3ded1454234a5a5a4a
git push origin v0.2.0
@JuliaRegistrator register