Skip to content

Commit

Permalink
bump major version
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhang314 committed Sep 6, 2024
1 parent 5fc2b45 commit 1a14ec1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RungeKuttaToolKit"
uuid = "5ccfa5ee-da33-4844-afab-33f13f6d8736"
authors = ["David K. Zhang <[email protected]>"]
version = "2.0.0"
version = "3.0.0"

[deps]
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

* **[RKTK][2]** contains parallel search and nonlinear optimization scripts that specifically target the discovery of new Runge–Kutta methods. In contrast to the pure mathematical operations in **RungeKuttaToolKit.jl**, the programs in **RKTK** establish a number of RKTK-specific conventions regarding optimization hyperparameters and file structure. Consequently, **RKTK** is not a registered Julia package.

Both **RungeKuttaToolKit.jl** and **RKTK** are designed with reproducibility as an explicit goal. The [RKTKSearch.jl][3] program has been tested to produce bit-for-bit identical results across multiple architectures (i686, x86-64, ARMv8) and multiple CPU generations (Haswell, Skylake, Rocket Lake, Zen 4).
Both **RungeKuttaToolKit.jl** and **RKTK** are designed with reproducibility as an explicit goal. The [RKTKSearch.jl][3] program has been tested to produce bit-for-bit identical results across multiple architectures (i686, x86-64, ARMv8) and multiple CPU generations (Haswell, Skylake, Rocket Lake, Zen 5).



Expand Down
2 changes: 1 addition & 1 deletion src/RungeKuttaToolKit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const NULL_INDEX = typemin(Int)
include("ButcherInstructions.jl")


const PERFORM_INTERNAL_BOUNDS_CHECKS = true
const PERFORM_INTERNAL_BOUNDS_CHECKS = false
abstract type AbstractRKParameterization{T} end
abstract type AbstractRKParameterizationQR{T} end
include("RKParameterization.jl")
Expand Down

2 comments on commit 1a14ec1

@dzhang314
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/114706

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 v3.0.0 -m "<description of version>" 1a14ec1ecd2a4a3702b118afcff8213fc68d8e53
git push origin v3.0.0

Please sign in to comment.