Skip to content

Commit

Permalink
V0.2.0 (#62)
Browse files Browse the repository at this point in the history
* use github actions for CI

* secant/tangent; cleanup

* sign_chart at endpoint
  • Loading branch information
jverzani committed Apr 19, 2024
1 parent 05cb1cc commit 6fdfac6
Show file tree
Hide file tree
Showing 9 changed files with 850 additions and 243 deletions.
33 changes: 23 additions & 10 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,49 @@
name = "CalculusWithJulia"
uuid = "a2e0e22d-7d4c-5312-9169-8b992201a882"
version = "0.1.4"
version = "0.2.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Contour = "d38c429a-6771-53c6-b99e-75d170b6e991"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
HCubature = "19dc6840-f33b-545b-b366-655c7e3ffd49"
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
PlotUtils = "995b91a9-d308-5afd-9ec6-746e21dbc043"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
SplitApplyCombine = "03a91e81-4c3e-53e1-a0a4-9c0c8f19dd66"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[weakdeps]
SymPyCore = "458b697b-88f0-4a86-b56b-78b75cfb3531"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"

[compat]
Contour = "0.5, 0.6"
Contour = "0.5 - 0.6"
ForwardDiff = "0.10"
HCubature = "1"
IntervalSets = "0.5, 0.6, 0.7"
JSON = "0.10, 0.20, 0.21, 1"
PlotUtils = "1"
RecipesBase = "0.7, 0.8, 1.0"
Plots = "1"
Reexport = "1"
Requires = "1"
Roots = "1, 2"
SpecialFunctions = "1, 2"
SplitApplyCombine = "1"
julia = "1"

[extensions]
CalculusWithJuliaSymPyCoreExt = "SymPyCore"
CalculusWithJuliaPlotsExt = "Plots"

[extras]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Contour = "d38c429a-6771-53c6-b99e-75d170b6e991"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
SymPyCore = "458b697b-88f0-4a86-b56b-78b75cfb3531"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["SpecialFunctions", "Test",
"BenchmarkTools", "ForwardDiff",
]
Loading

2 comments on commit 6fdfac6

@jverzani
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
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/105260

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>" 6fdfac6cc368370f3248ff13e176c2d3cc0f3030
git push origin v0.2.0

Please sign in to comment.