Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
tknopp committed Jan 19, 2022
1 parent 3d58613 commit 9e2a806
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MPIReco"
uuid = "e4246700-6248-511e-8146-a1d1f47669d2"
authors = ["Tobias Knopp <[email protected]>"]
version = "0.3.9"
version = "0.3.10"

[deps]
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2"
Expand All @@ -11,6 +11,8 @@ ImageUtils = "8ad4436d-4835-5a14-8bce-3ae014d2950b"
IniFile = "83e8ac13-25f8-5344-8a64-a9f2b223428f"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MPIFiles = "371237a9-e6c1-5201-9adb-3d8cfa78fa9f"
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
RegularizedLeastSquares = "1e9c538a-f78c-5de5-8ffb-0b6dbe892d23"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
Expand All @@ -24,6 +26,8 @@ DistributedArrays = "0.6"
ImageUtils = "0.2"
IniFile = "0.5"
MPIFiles = "0.12"
ProgressMeter = "1.2"
Reexport = "1.0"
RegularizedLeastSquares = "0.7, 0.8"
BSON = "0.3.4"
CUDA = "3.5.0"
Expand Down
2 changes: 2 additions & 0 deletions src/MPIReco.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
module MPIReco
using RegularizedLeastSquares
using Reexport
@reexport using RegularizedLeastSquares
@reexport using ImageUtils
@reexport using MPIFiles
const shape = MPIFiles.shape
@reexport using DSP
using ProgressMeter

using LinearAlgebra
using SparseArrays
Expand Down

2 comments on commit 9e2a806

@tknopp
Copy link
Member Author

@tknopp tknopp commented on 9e2a806 Jan 19, 2022

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

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.3.10 -m "<description of version>" 9e2a80694f4a89855351db6fa8aba1ce592415c9
git push origin v0.3.10

Please sign in to comment.