Skip to content

Commit d1164a5

Browse files
authored
Merge pull request #771 from JuliaRobotics/develop
v0.24.7-rc1
2 parents 4a843cd + c0ab1e4 commit d1164a5

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
pull_request:
44
push:
55
branches:
6-
- master
76
- develop
87
- release**
98
workflow_dispatch:
@@ -16,16 +15,16 @@ jobs:
1615
strategy:
1716
fail-fast: false
1817
matrix:
19-
julia-version: ['1.10', 'nightly']
18+
julia-version: ['1.11', 'nightly']
2019
os: [ubuntu-latest]
2120
arch: [x64]
2221
steps:
2322
- uses: actions/checkout@v2
24-
- uses: julia-actions/setup-julia@v1
23+
- uses: julia-actions/setup-julia@v2
2524
with:
2625
version: ${{ matrix.julia-version }}
2726
arch: ${{ matrix.arch }}
28-
- uses: actions/cache@v1
27+
- uses: actions/cache@v4
2928
env:
3029
cache-name: cache-artifacts
3130
with:
@@ -56,12 +55,12 @@ jobs:
5655
steps:
5756
- uses: actions/checkout@v2
5857

59-
- uses: julia-actions/setup-julia@v1
58+
- uses: julia-actions/setup-julia@v2
6059
with:
6160
version: '1.10'
6261
arch: x64
6362

64-
- uses: actions/cache@v1
63+
- uses: actions/cache@v4
6564
env:
6665
cache-name: cache-artifacts
6766
with:
@@ -79,7 +78,7 @@ jobs:
7978
- name: Run tests on Upstream Dev
8079
run: |
8180
julia --project=@. --check-bounds=yes -e 'using Pkg; Pkg.add(PackageSpec(name="IncrementalInference",rev="develop"));'
82-
julia --project=@. --check-bounds=yes -e 'using Pkg; Pkg.add(PackageSpec(name="ApproxManifoldProducts",rev="master"));'
83-
julia --project=@. --check-bounds=yes -e 'using Pkg; Pkg.add(PackageSpec(name="DistributedFactorGraphs",rev="master"));'
81+
julia --project=@. --check-bounds=yes -e 'using Pkg; Pkg.add(PackageSpec(name="ApproxManifoldProducts",rev="develop"));'
82+
julia --project=@. --check-bounds=yes -e 'using Pkg; Pkg.add(PackageSpec(name="DistributedFactorGraphs",rev="develop"));'
8483
julia --project=@. --check-bounds=yes -e 'using Pkg; Pkg.test("RoME"; coverage=false)'
8584
shell: bash

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "RoME"
22
uuid = "91fb55c2-4c03-5a59-ba21-f4ea956187b8"
33
keywords = ["SLAM", "state-estimation", "MM-iSAM", "MM-iSAMv2", "inference", "robotics"]
44
desc = "Non-Gaussian simultaneous localization and mapping"
5-
version = "0.24.6"
5+
version = "0.24.7"
66

77
[deps]
88
ApproxManifoldProducts = "9bbbb610-88a1-53cd-9763-118ce10c1f89"
@@ -55,19 +55,19 @@ Dates = "1.10"
5555
DelimitedFiles = "1"
5656
DifferentialEquations = "7"
5757
Distributed = "1.10"
58-
DistributedFactorGraphs = "0.25"
58+
DistributedFactorGraphs = "0.25, 0.26"
5959
Distributions = "0.24, 0.25"
6060
DocStringExtensions = "0.8, 0.9"
6161
FileIO = "1"
62-
Flux = "0.14"
62+
Flux = "0.14, 0.15, 0.16"
6363
ImageCore = "0.9, 0.10"
6464
ImageIO = "0.6"
6565
IncrementalInference = "0.35"
6666
Interpolations = "0.14, 0.15"
6767
KernelDensityEstimate = "0.5.1, 0.6"
6868
LinearAlgebra = "1.10"
6969
Manifolds = "0.10.1"
70-
ManifoldsBase = "0.15"
70+
ManifoldsBase = "0.15, 1"
7171
Optim = "0.22, 1"
7272
OrderedCollections = "1"
7373
PrecompileTools = "1"

0 commit comments

Comments
 (0)