Skip to content

Commit

Permalink
Merge pull request #174 from kalmarek/release-1.0
Browse files Browse the repository at this point in the history
Release 1.0
  • Loading branch information
Joel-Dahne authored Nov 7, 2023
2 parents 6aeb95d + d676922 commit 38cb64d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
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

2 comments on commit 38cb64d

@Joel-Dahne
Copy link
Collaborator 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/94932

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 v1.0.0 -m "<description of version>" 38cb64ddc0d4799335fb64cbdc51d8838658af17
git push origin v1.0.0

Please sign in to comment.