Skip to content

Commit e48eb28

Browse files
committed
Release 1.9.3
1 parent f604dbc commit e48eb28

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.ci/gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variables:
2-
GTIRB_VERSION: ""
3-
GTIRB_PPRINTER_VERSION: ""
2+
GTIRB_VERSION: "2.3.1"
3+
GTIRB_PPRINTER_VERSION: "2.2.3"
44
CAPSTONE_VERSION: ""
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

CHANGELOG.md

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

33
* Enhance MIPS32 support:
44
- Fix several issues that could result in missing symbolic expressions

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.1"
93+
gtirb_pprinter_version = "2.2.3"
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)