Skip to content

Commit

Permalink
Release 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdorn-gt committed Jun 13, 2024
1 parent a2e0a6b commit 11d6ba9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
24 changes: 12 additions & 12 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.1.0"
GTIRB_PPRINTER_VERSION: "2.2.0"
CAPSTONE_VERSION: "5.0.1-gt"
# 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 Expand Up @@ -55,23 +55,23 @@ default:
# Use aptitude to make sure gtirb-pprinter is installed even if that means installing an old gtirb
- >-
aptitude install --download-only -y -o "Aptitude::ProblemResolver::Hints::=reject gtirb-pprinter :UNINST"
libcapstone-dev${CAPSTONE_VERSION:+=$CAPSTONE_VERSION}
libgtirb-dev${GTIRB_VERSION:+=$GTIRB_VERSION}
libgtirb-pprinter-dev${GTIRB_PPRINTER_VERSION:+=$GTIRB_PPRINTER_VERSION}
gtirb-pprinter${GTIRB_PPRINTER_VERSION:+=$GTIRB_PPRINTER_VERSION}
libcapstone-dev${CAPSTONE_VERSION:+=1:$CAPSTONE_VERSION}
libgtirb-dev${GTIRB_VERSION:+=$GTIRB_VERSION-$(lsb_release -sc)}
libgtirb-pprinter-dev${GTIRB_PPRINTER_VERSION:+=$GTIRB_PPRINTER_VERSION-$(lsb_release -sc)}
gtirb-pprinter${GTIRB_PPRINTER_VERSION:+=$GTIRB_PPRINTER_VERSION-$(lsb_release -sc)}
- mv /var/cache/apt/archives/*.deb .

.install-deps:
# Use aptitude to make sure gtirb-pprinter is installed even if that means installing an old gtirb
- >-
aptitude install -y -o "Aptitude::ProblemResolver::Hints::=reject gtirb-pprinter :UNINST"
libcapstone-dev${CAPSTONE_VERSION:+=$CAPSTONE_VERSION}
libgtirb-dev${GTIRB_VERSION:+=$GTIRB_VERSION}
libgtirb-pprinter-dev${GTIRB_PPRINTER_VERSION:+=$GTIRB_PPRINTER_VERSION}
gtirb-pprinter${GTIRB_PPRINTER_VERSION:+=$GTIRB_PPRINTER_VERSION}
libcapstone-dev${CAPSTONE_VERSION:+=1:$CAPSTONE_VERSION}
libgtirb-dev${GTIRB_VERSION:+=$GTIRB_VERSION-$(lsb_release -sc)}
libgtirb-pprinter-dev${GTIRB_PPRINTER_VERSION:+=$GTIRB_PPRINTER_VERSION-$(lsb_release -sc)}
gtirb-pprinter${GTIRB_PPRINTER_VERSION:+=$GTIRB_PPRINTER_VERSION-$(lsb_release -sc)}
.install-capstone:
- apt-get install -y libcapstone-dev${CAPSTONE_VERSION:+=$CAPSTONE_VERSION}
- apt-get install -y libcapstone-dev${CAPSTONE_VERSION:+=1:$CAPSTONE_VERSION}

# Set up ccache and report initial stats.
.setup-ccache:
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.9.0 (Unreleased)
# 1.9.0

* Stop generating debian metapackages and packages with the version attached
to the package name. Updates in the apt-repository now support multiple
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.1.0"
gtirb_pprinter_version = "2.2.0"
capstone_version = "5.0.1-gt"
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 11d6ba9

Please sign in to comment.