Skip to content

Commit

Permalink
Release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aeflores committed May 16, 2023
1 parent 6a7e3dc commit 177e7fe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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: "1.11.0"
GTIRB_PPRINTER_VERSION: "1.9.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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.6.0 (Unreleased)
# 1.6.0
* ARM: Improve code inference using unwind information from .ARM.exidx section
* Replace symbolic expression attributes with composable labels.
* ddisasm output now displays runtimes of "load", "compute", and "transform"
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 = "1.11.0"
gtirb_pprinter_version = "1.9.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

0 comments on commit 177e7fe

Please sign in to comment.