Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
vavrines committed Jul 5, 2024
1 parent 2607d55 commit b90ec68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "KitBase"
uuid = "86eed249-3a28-466f-8d3a-596821e1af9a"
authors = ["Tianbai Xiao <[email protected]>"]
version = "0.9.24"
version = "0.9.25"

[deps]
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
Expand Down Expand Up @@ -36,18 +36,21 @@ WriteVTK = "64499a7a-5c06-52f2-abe2-ccb03c286192"
BSON = "0.3"
CSV = "0.8, 0.9, 0.10"
CUDA = "^2, ^3, ^4, ^5"
Dates = "<0.0.1, 1"
Distributions = "0.21, 0.22, 0.23, 0.24, 0.25"
FFTW = "^1"
FastGaussQuadrature = "0.2, 0.3, 0.4, 0.5, ^1"
FileIO = "^1"
FiniteMesh = "0.3"
ForwardDiff = "0.10"
JLD2 = "0.4"
LinearAlgebra = "<0.0.1, 1"
MultivariatePolynomials = "0.3, 0.4, 0.5"
NonlinearSolve = "^1, ^2, ^3"
OffsetArrays = "^1"
Optim = "^1"
Parameters = "0.12"
Printf = "<0.0.1, 1"
RecipesBase = "^1"
Reexport = "^1"
Roots = "^2"
Expand All @@ -60,7 +63,6 @@ WriteVTK = "^1"
julia = "^1"

[extras]
CPUSummary = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

Expand Down
2 changes: 1 addition & 1 deletion src/KitBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ using MultivariatePolynomials
using OffsetArrays
using Optim
using Parameters
using Printf
using Printf: @printf
using RecipesBase
using Reexport
using SpecialFunctions
Expand Down

2 comments on commit b90ec68

@vavrines
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/110505

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.9.25 -m "<description of version>" b90ec687d95006325bf051be8c7c7deebe485a9f
git push origin v0.9.25

Please sign in to comment.