Skip to content

Commit 31b6081

Browse files
authored
Merge pull request #111 from ModiaSim/mo_update_versions
Project.toml and Manifest.toml updated
2 parents 14e96ea + da2e249 commit 31b6081

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Manifest.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ version = "0.4.1"
6161

6262
[[deps.CPUSummary]]
6363
deps = ["CpuId", "IfElse", "Static"]
64-
git-tree-sha1 = "913b28a04929053e4310d0a4915f1efe195c0ce6"
64+
git-tree-sha1 = "80f3d536df634cabed8b98ad3f0cea3a715fd254"
6565
uuid = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"
66-
version = "0.1.19"
66+
version = "0.1.20"
6767

6868
[[deps.Calculus]]
6969
deps = ["LinearAlgebra"]
@@ -253,9 +253,9 @@ version = "0.8.6"
253253

254254
[[deps.DoubleFloats]]
255255
deps = ["GenericLinearAlgebra", "LinearAlgebra", "Polynomials", "Printf", "Quadmath", "Random", "Requires", "SpecialFunctions"]
256-
git-tree-sha1 = "f10829d027c54f9ca2563ab4048ba2830a04fe68"
256+
git-tree-sha1 = "58b203210416b70fc4f41eed1d55bfe876ef90db"
257257
uuid = "497a8b3b-efae-58df-a0af-a86822472b78"
258-
version = "1.1.28"
258+
version = "1.2.0"
259259

260260
[[deps.Downloads]]
261261
deps = ["ArgTools", "LibCURL", "NetworkOptions"]
@@ -674,9 +674,9 @@ version = "1.4.1"
674674

675675
[[deps.OrdinaryDiffEq]]
676676
deps = ["Adapt", "ArrayInterface", "DataStructures", "DiffEqBase", "DocStringExtensions", "ExponentialUtilities", "FastClosures", "FiniteDiff", "ForwardDiff", "LinearAlgebra", "LinearSolve", "Logging", "LoopVectorization", "MacroTools", "MuladdMacro", "NLsolve", "NonlinearSolve", "Polyester", "PreallocationTools", "RecursiveArrayTools", "Reexport", "SciMLBase", "SparseArrays", "SparseDiffTools", "StaticArrays", "UnPack"]
677-
git-tree-sha1 = "c5568ed45ee56cb4a5e3cebff3b91541ae016a83"
677+
git-tree-sha1 = "8031a288c9b418664a3dfbac36e464a3f61ace73"
678678
uuid = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
679-
version = "6.9.0"
679+
version = "6.10.0"
680680

681681
[[deps.PDMats]]
682682
deps = ["LinearAlgebra", "SparseArrays", "SuiteSparse"]

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "0.10.3"
66
[compat]
77
Colors = "0.12, 0.11, 0.10"
88
DataFrames = "1"
9-
DoubleFloats = "1.1"
9+
DoubleFloats = "1"
1010
FileIO = "1"
1111
HTTP = "0.9"
1212
JSON = "0.21"

src/Modia3D.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module Modia3D
55

66
const path = dirname(dirname(@__FILE__)) # Absolute path of package directory
77
const Version = "0.10.3"
8-
const Date = "2022-04-16"
8+
const Date = "2022-04-18"
99

1010
println("\nImporting Modia3D Version $Version ($Date)")
1111

@@ -34,8 +34,8 @@ abstract type AbstractDLR_VisualizationRenderer <: AbstractRenderer end # Commu
3434

3535

3636
using StaticArrays
37-
using DoubleFloats
3837
using Reexport
38+
import DoubleFloats
3939
import MonteCarloMeasurements
4040
import Measurements
4141
import Unitful
@@ -50,7 +50,7 @@ const modelsPath = joinpath(Modia.path, "models")
5050
const VarFloatType = Union{AbstractFloat, MonteCarloMeasurements.AbstractParticles}
5151

5252
# MPRFloatType defines the float type of MPR calculations
53-
const MPRFloatType = Double64
53+
const MPRFloatType = DoubleFloats.Double64
5454

5555
# Used renderer (actual value is defined with __init__() below)
5656
const renderer = Vector{AbstractRenderer}(undef,2)

0 commit comments

Comments
 (0)