We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PACKAGE_VERSION
1 parent d5a400b commit d4b951bCopy full SHA for d4b951b
Project.toml
@@ -1,7 +1,7 @@
1
name = "DynamicExpressions"
2
uuid = "a40a106e-89c9-4ca8-8020-a735e8728b6b"
3
authors = ["MilesCranmer <miles.cranmer@gmail.com>"]
4
-version = "0.2.3"
+version = "0.3.0"
5
6
[deps]
7
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
src/DynamicExpressions.jl
@@ -31,4 +31,11 @@ using Reexport
31
@reexport import .InterfaceSymbolicUtilsModule: node_to_symbolic, symbolic_to_node
32
@reexport import .SimplifyEquationModule: combine_operators, simplify_tree
33
34
+import TOML: parsefile
35
+
36
+const PACKAGE_VERSION = let
37
+ project = parsefile(joinpath(pkgdir(@__MODULE__), "Project.toml"))
38
+ VersionNumber(project["version"])
39
+end
40
41
end
0 commit comments