Skip to content

Commit

Permalink
for registration
Browse files Browse the repository at this point in the history
  • Loading branch information
mloubout committed Aug 12, 2021
1 parent ceb06ff commit b9b7b43
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
12 changes: 9 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name = "SetIntersectionProjection"
uuid = "335f7d24-6316-57dd-9c3a-df470f2b739e"
authors = ["Bas Peters <[email protected]>"]
version = "0.2.0"
version = "0.2.1"

This comment has been minimized.

Copy link
@mloubout

mloubout Aug 12, 2021

Author Member

[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
DistributedArrays = "aaf54ef3-cdf8-58ed-94cc-d582ad619b94"
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
JOLI = "bb331ad6-a1cf-11e9-23da-9bcb53c69f6f"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand All @@ -17,4 +16,11 @@ SortingAlgorithms = "a2af1166-a08f-5f64-846c-94a0d3cef48c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Wavelets = "29a6e085-ba6d-5f35-a997-948ac2efa89a"

[compat]
julia = "1"
Interpolations = "0.13"
JOLI = "0.7"
Parameters = "0.12"
SortingAlgorithms = "1"

3 changes: 1 addition & 2 deletions src/SetIntersectionProjection.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ using Distributed
using LinearAlgebra
using SparseArrays
using Printf
using FFTW
using Statistics

#other packages
using Parameters
using Interpolations
using DistributedArrays
using JOLI
using Wavelets
using JOLI.FFTW, JOLI.Wavelets
using SortingAlgorithms

export log_type_PARSDMM, set_properties, PARSDMM_options, set_definitions
Expand Down

1 comment on commit b9b7b43

@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/42739

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

Also, note the warning: This looks like a new registration that registers version 0.2.1.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.