Skip to content

Commit 0176e6b

Browse files
committed
Release 1.9.1
1 parent 8f827b8 commit 0176e6b

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.ci/gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
2-
GTIRB_VERSION: ""
3-
GTIRB_PPRINTER_VERSION: ""
4-
CAPSTONE_VERSION: ""
2+
GTIRB_VERSION: "2.3.0"
3+
GTIRB_PPRINTER_VERSION: "2.2.1"
4+
CAPSTONE_VERSION: "5.0.1-gt"
55
# The IMAGE_TAG is derived from the branch name so that if a branch modifies
66
# the CI images, it builds and runs using the new images without conflicting
77
# with main.

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.9.1 (Unreleased)
1+
# 1.9.1
22

33
* Fix a hang due to incorrect jump-table boundaries inferred from irrelevant register correlations to the index register
44
* Requires gtirb >=2.2.0

conanfile.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ def build_requirements(self):
8989
self.build_requires("ninja/1.10.2")
9090

9191
boost_version = "1.69.0"
92-
gtirb_version = "dev"
93-
gtirb_pprinter_version = "dev"
94-
capstone_version = "dev"
92+
gtirb_version = "2.3.0"
93+
gtirb_pprinter_version = "2.2.1"
94+
capstone_version = "5.0.1-gt"
9595
requires = (
9696
"boost/%s" % (boost_version),
97-
"gtirb/%s@rewriting+gtirb/master" % (gtirb_version),
98-
"gtirb-pprinter/%s@rewriting+gtirb-pprinter/master"
97+
"gtirb/%s@rewriting+gtirb/stable" % (gtirb_version),
98+
"gtirb-pprinter/%s@rewriting+gtirb-pprinter/stable"
9999
% (gtirb_pprinter_version),
100100
"capstone/%s@rewriting+extra-packages/next" % (capstone_version),
101101
)

0 commit comments

Comments
 (0)