Skip to content

Commit

Permalink
release-1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aeflores committed Dec 12, 2023
1 parent 8203e91 commit 50c2ad5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .ci/gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variables:
GTIRB_VERSION: ""
GTIRB_PPRINTER_VERSION: ""
CAPSTONE_VERSION: ""
GTIRB_VERSION: "2.0.0"
GTIRB_PPRINTER_VERSION: "2.1.0"
CAPSTONE_VERSION: "5.0.0-gt2"
# The IMAGE_TAG is derived from the branch name so that if a branch modifies
# the CI images, it builds and runs using the new images without conflicting
# with main.
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.7.1 (Unreleased)
# 1.8.0

* Prefer LOCAL symbols over GLOBAL ones when selecting symbols for symbolic
expressions for ISAs other than MIPS.
Expand All @@ -18,7 +18,7 @@
* Added pattern to match missed symbolic data in pointer arrays.
* Fix symbols associated to functions (Auxdata functionNames) for PE binaries
when Ddisasm is run with option `-F`.
* Requires gtirb >=1.12.1, gtirb-pprinter >=2.0.0
* Requires gtirb >=2.0.0, gtirb-pprinter >=2.0.0

# 1.7.0
* Update code inference to use weighted interval scheduling to resolve blocks;
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ endif()
# ---------------------------------------------------------------------------
# gtirb
# ---------------------------------------------------------------------------
find_package(gtirb 1.12.1 REQUIRED)
find_package(gtirb 2.0.0 REQUIRED)

# ---------------------------------------------------------------------------
# pretty-printer
Expand Down
10 changes: 5 additions & 5 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ def build_requirements(self):
self.build_requires("ninja/1.10.2")

boost_version = "1.69.0"
gtirb_version = "dev"
gtirb_pprinter_version = "dev"
capstone_version = "dev"
gtirb_version = "2.0.0"
gtirb_pprinter_version = "2.1.0"
capstone_version = "5.0.0-gt2"
requires = (
"boost/%s" % (boost_version),
"gtirb/%s@rewriting+gtirb/master" % (gtirb_version),
"gtirb-pprinter/%s@rewriting+gtirb-pprinter/master"
"gtirb/%s@rewriting+gtirb/stable" % (gtirb_version),
"gtirb-pprinter/%s@rewriting+gtirb-pprinter/stable"
% (gtirb_pprinter_version),
"capstone/%s@rewriting+extra-packages/next" % (capstone_version),
)
Expand Down
4 changes: 2 additions & 2 deletions version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION_MAJOR 1
VERSION_MINOR 7
VERSION_PATCH 1
VERSION_MINOR 8
VERSION_PATCH 0

0 comments on commit 50c2ad5

Please sign in to comment.