Skip to content

Commit

Permalink
Upgrade TaylorSeries (v0.17) and TaylorIntegration (v0.15) (#165)
Browse files Browse the repository at this point in the history
* Updates in Project.toml (not IA.jl)

* Update some tests

* Fixes in validated methods

* Remove old implementation files
in src/Taylor1 and src/TaylorN

* Fix docstrings of initialize!

* Clean-up examples

* Upgrade CI

* Fixed skipped tests

* Bump minor version
  • Loading branch information
lbenet committed Mar 13, 2024
1 parent b1697ac commit d87940f
Show file tree
Hide file tree
Showing 19 changed files with 184 additions and 9,322 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
# julia-arch: x86

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: actions/cache@v1
- uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
Expand All @@ -45,9 +45,9 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
# continue-on-error: ${{ matrix.julia-version == 'nightly' }}
- uses: julia-actions/julia-runtest@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
# continue-on-error: ${{ matrix.julia-version == 'nightly' }}
- uses: julia-actions/julia-processcoverage@v1
- uses: coverallsapp/github-action@master
with:
Expand Down
9 changes: 6 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TaylorModels"
uuid = "314ce334-5f6e-57ae-acf6-00b6e903104a"
repo = "https://github.com/JuliaIntervals/TaylorModels.jl.git"
version = "0.6.2"
version = "0.7.0"

[deps]
IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
Expand All @@ -17,10 +17,13 @@ TaylorSeries = "6aa5eb33-94cf-58f4-a9d0-e4b2c4fc25ea"
[compat]
IntervalArithmetic = "^0.20"
IntervalRootFinding = "0.5"
LinearAlgebra = "<0.0.1, 1"
Markdown = "<0.0.1, 1"
RecipesBase = "1"
Reexport = "1"
TaylorIntegration = "0.11"
TaylorSeries = "0.13, 0.14"
TaylorIntegration = "0.15"
TaylorSeries = "0.17"
Test = "<0.0.1, 1"
julia = "1"

[extras]
Expand Down
Loading

2 comments on commit d87940f

@lbenet
Copy link
Member Author

@lbenet lbenet commented on d87940f Mar 13, 2024

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/102833

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

Please sign in to comment.