Skip to content

Commit 185059f

Browse files
authored
Merge pull request #803 from JuliaRobotics/22Q1/maint/prepv12
prep v0.12
2 parents 4339a2d + 8bef6ef commit 185059f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "Caesar"
22
uuid = "62eebf14-49bc-5f46-9df9-f7b7ef379406"
33
keywords = ["SLAM", "state-estimation", "MM-iSAM", "MM-iSAMv2", "inference", "robotics", "ROS"]
44
desc = "Non-Gaussian simultaneous localization and mapping"
5-
version = "0.11.1"
5+
version = "0.12.0"
66

77
[deps]
88
ApproxManifoldProducts = "9bbbb610-88a1-53cd-9763-118ce10c1f89"
@@ -75,7 +75,7 @@ TimeZones = "1.3.1, 1.4"
7575
TransformUtils = "0.2.2"
7676
Unmarshal = "0.3, 0.4"
7777
YAML = "0.3, 0.4"
78-
julia = "1.4"
78+
julia = "1.6"
7979

8080
[extras]
8181
AprilTags = "f0fec3d5-a81e-5a6a-8c28-d2b34f3659de"

examples/dev/apriltagserver/EasySLAMExAprilTags.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ allTags = deepcopy(detector.(imgs))
7171

7272
## init the factor graph
7373

74-
fg = generateCanonicalFG_ZeroPose(varType=Pose2)
74+
fg = generateGraph_ZeroPose(varType=Pose2)
7575

7676
getSolverParams(fg).useMsgLikelihoods = true
7777

examples/wheeled/racecar/testFluxModelsPose2.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ end
1919
##
2020

2121
# start with a basic factor graph
22-
fg = generateCanonicalFG_ZeroPose(varType=Pose2)
22+
fg = generateGraph_ZeroPose(varType=Pose2)
2323

2424
mvnNaive = MvNormal(zeros(3), diagm([1.0;1.0;0.01]))
2525

src/images/Pose2AprilTag4Corners.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ detector = AprilTagDetector()
4545
tags = detector(img)
4646
4747
# new factor graph with Pose2 `:x0` and a Prior.
48-
fg = generateCanonicalFG_ZeroPose(varType=Pose2)
48+
fg = generateGraph_ZeroPose(varType=Pose2)
4949
5050
# use a construction helper to add factors to all the tags
5151
for tag in tags

0 commit comments

Comments
 (0)