Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0 #174

Merged
merged 4 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Arblib"
uuid = "fb37089c-8514-4489-9461-98f9c8763369"
authors = ["Marek Kaluba <[email protected]>", "Sascha Timme <Sascha Timme <[email protected]>", "Joel Dahne <[email protected]>"]
version = "0.8.1"
version = "1.0"

[deps]
FLINT_jll = "e134572f-a0d5-539d-bddf-3cad8db41a82"
Expand All @@ -15,8 +15,12 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
Documenter = "1"
FLINT_jll = "~300.0.0"
SpecialFunctions = "1.0, 2"
Random = "1.6"
Serialization = "1.6"
SpecialFunctions = "1, 2"
Test = "1.6"
julia = "1.6"

[targets]
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ This package is a thin, efficient wrapper around
[Arb](http://arblib.org) - a C library for arbitrary-precision ball
arithmetic. Since 2023 Arb is part of [Flint](https://flintlib.org/).

The package is currently in early development. More features and
documentation will be added. While we try to avoid it there might be
breaking changes.

## Installation

```julia
Expand Down
6 changes: 0 additions & 6 deletions src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ end

"""
ArbSeries <: Number

This type should be considered experimental, the interface for it
might change in the future.
"""
struct ArbSeries <: Number
poly::ArbPoly
Expand All @@ -120,9 +117,6 @@ end

"""
AcbSeries <: Number

This type should be considered experimental, the interface for it
might change in the future.
"""
struct AcbSeries <: Number
poly::AcbPoly
Expand Down
Loading