Skip to content

Commit 1cd04b1

Browse files
committed
Release 1.9.2
1 parent d1f332b commit 1cd04b1

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.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.2"
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.2 (Unreleased)
1+
# 1.9.2
22

33
* Fix bug that could cause conditionial code to be missing in IT-block instructions.
44

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.2"
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)