Skip to content

Commit 1107135

Browse files
committed
Upgrade or-tools to v9.1
1 parent 3ace05d commit 1107135

File tree

7 files changed

+12
-7
lines changed

7 files changed

+12
-7
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[submodule "c-deps/abseil-cpp"]
55
path = c-deps/abseil-cpp
66
url = [email protected]:abseil/abseil-cpp.git
7+
[submodule "c-deps/protobuf"]
8+
path = c-deps/protobuf
9+
url = [email protected]:protocolbuffers/protobuf.git

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ proto: internal/pb/*.proto
3636
bzl: FORCE
3737
@echo "--- generating bazel files"
3838
@echo "build --cxxopt=-std=c++17 --experimental_convenience_symlinks=ignore --define gotags=bazel" > $@.tmp
39-
@echo "test --cxxopt=-std=c++17 --test_env=BAZEL_WORKSPACE=$(shell bazel info workspace) --define gotags=bazel \
39+
@echo "test --cxxopt=-std=c++17 --experimental_convenience_symlinks=ignore --define gotags=bazel \
40+
--test_env=BAZEL_WORKSPACE=$(shell bazel info workspace) \
4041
--sandbox_writable_path=$(shell bazel info workspace)/testdata \
4142
--sandbox_writable_path=$(shell bazel info workspace)/internal/testutils/parser/testdata \
4243
--sandbox_writable_path=$(shell bazel info workspace)/internal/testutils/parser/lexer/testdata" >> $@.tmp

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ against Google's [Operations Research
88
Tools](https://developers.google.com/optimization/). It exposes a high-level
99
package for the [CP-SAT
1010
Solver](https://developers.google.com/optimization/cp/cp_solver), targeting the
11-
[v9.0](https://github.com/google/or-tools/releases/tag/v9.0) release.
11+
[v9.1](https://github.com/google/or-tools/releases/tag/v9.1) release.
1212

1313
### Examples
1414

WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
33

44
git_repository(
55
name = "ortools",
6-
commit = "b37d9c786b69128f3505f15beca09e89bf078a89", # tag v9.0
6+
commit = "86d4c54", # tag v9.1
77
remote = "https://github.com/google/or-tools.git",
88
)
99

1010
git_repository(
1111
name = "com_google_absl",
12-
commit = "e1d388e", # release 20210324.1
12+
commit = "278e0a0", # release 20210324.2
1313
remote = "https://github.com/abseil/abseil-cpp.git",
1414
)
1515

1616
git_repository(
1717
name = "com_google_protobuf",
18-
commit = "436bd78", # release v3.15.8
18+
commit = "89b14b1", # release v3.18.0
1919
remote = "https://github.com/protocolbuffers/protobuf.git",
2020
)
2121

c-deps/abseil-cpp

Submodule abseil-cpp updated 880 files

c-deps/or-tools

c-deps/protobuf

Submodule protobuf added at 89b14b1

0 commit comments

Comments
 (0)