Skip to content

Commit

Permalink
changed AbstractTensors to StaticVectors
Browse files Browse the repository at this point in the history
  • Loading branch information
chakravala committed Apr 23, 2024
1 parent 621df19 commit 381a792
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name = "Geophysics"
uuid = "74efdf00-b554-44e1-bd21-abb9281d951c"
authors = ["Michael Reed"]
version = "0.3.7"
version = "0.3.8"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
AbstractTensors = "a8e43f4a-99b7-5565-8bf1-0165161caaea"
StaticVectors = "20fadf95-9e3d-483c-97cd-cab2760e7998"
UnitSystems = "3a241a3c-2137-41aa-af5e-1388e404ca09"

[compat]
julia = "1"
AbstractTensors = "0.7"
UnitSystems = "0.3.3"
StaticVectors = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 1 addition & 1 deletion src/Geophysics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module Geophysics
# \___|\___|\___/ | .__/ |_||_| \_, |/__/|_|\__| /__/
# |_| |_|

using AbstractTensors, LinearAlgebra
using StaticVectors, LinearAlgebra
import Base: @pure, show, display

export FluidState, Atmosphere, Weather, Planet
Expand Down

2 comments on commit 381a792

@chakravala
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/105451

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.3.8 -m "<description of version>" 381a792ef943948b67f20e59037dfa346582816a
git push origin v0.3.8

Please sign in to comment.