Skip to content

Commit

Permalink
Use newer JLL with updated upstream source code (#102)
Browse files Browse the repository at this point in the history
* Use newer JLL with updated upstream source code

* Update links in README.md
  • Loading branch information
giordano authored Jan 14, 2025
1 parent b5f9b37 commit bd97844
Show file tree
Hide file tree
Showing 4 changed files with 382 additions and 253 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: CI

on:
push:
Expand All @@ -19,7 +20,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.3'
- 'min'
- '1'
- 'nightly'
os:
Expand All @@ -35,7 +36,6 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
depwarn: error
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name = "Dierckx"
uuid = "39dd38d3-220a-591b-8e3c-4c3a8c710a94"
repo = "https://github.com/kbarbary/Dierckx.jl.git"
version = "0.5.3"
version = "0.5.4"

[deps]
Dierckx_jll = "cd4c43a9-7502-52ba-aa6d-59fb2a88580b"

[compat]
Dierckx_jll = "0.0.1, 0.1"
julia = "1.3"
Dierckx_jll = "0.2"
julia = "1.6"

[extras]
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Dierckx.jl

*Julia library for 1-d and 2-d splines*

[![Build Status](https://img.shields.io/travis/kbarbary/Dierckx.jl.svg?style=flat-square&logo=github&label=CI)](https://github.com/kbarbary/Dierckx.jl/actions?query=workflow%3ACI)
[![Coverage Status](http://img.shields.io/coveralls/kbarbary/Dierckx.jl.svg?style=flat-square)](https://coveralls.io/r/kbarbary/Dierckx.jl?branch=master)
[![.github/workflows/ci.yml](https://github.com/JuliaMath/Dierckx.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaMath/Dierckx.jl/actions/workflows/ci.yml)
[![Coverage Status](http://img.shields.io/coveralls/JuliaMath/Dierckx.jl.svg?style=flat-square)](https://coveralls.io/github/JuliaMath/Dierckx.jl)

This is a Julia wrapper for the
[dierckx](http://www.netlib.org/dierckx/index.html) Fortran library,
Expand All @@ -28,11 +28,11 @@ of Julia.
- Derivatives, integrals and roots of 1-d splines.
- Parametric B-splines.

Install (Julia 1.3 and later)
Install (Julia 1.6 and later)
-----------------------------

```julia
(v1.3) pkg> add Dierckx
(v1.6) pkg> add Dierckx
```

(Type `]` to enter package mode.)
Expand Down Expand Up @@ -309,4 +309,4 @@ If you use this package in a pulication and wish to cite it, you may want to cit

> Paul Dierckx, Curve and Surface Fitting with Splines, Oxford University Press, 1993
If convenient, you can also include a link to the github repository for this package: https://github.com/kbarbary/Dierckx.jl.
If convenient, you can also include a link to the github repository for this package: https://github.com/JuliaMath/Dierckx.jl.
Loading

2 comments on commit bd97844

@giordano
Copy link
Member 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/123009

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

Please # to comment.