Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aeflores committed Sep 13, 2023
1 parent 7e4d183 commit 76fe894
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .ci/gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
variables:
GIT_SUBMODULE_STRATEGY: recursive
# These variables are used to pin versions on release branches.
GTIRB_VERSION: ""
CAPSTONE_VERSION: ""
GTIRB_VERSION: "1.12.0"
CAPSTONE_VERSION: "5.0.0-gt2"
CONAN_VERSION: "1.59"
# The following two variables are used by the package uploader.
PROJECT_ID: $CI_PROJECT_ID
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.10.0 (Unreleased)
# 2.0.0
* Remove unnecessary --isa,-I option.
* Fix bug where a binary with COPY-relocated symbols could be missing
DT_NEEDED entries after rewriting with `--dummy-so`.
Expand Down
6 changes: 3 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ def conan_recipe(self):

class GtirbPprinterConan(Properties, ConanFile):
boost_version = "1.69.0"
gtirb_version = "dev"
capstone_version = "dev"
gtirb_version = "1.12.0"
capstone_version = "5.0.0-gt2"
requires = (
"boost/%s" % (boost_version),
"gtirb/%s@rewriting+gtirb/master" % (gtirb_version),
"gtirb/%s@rewriting+gtirb/stable" % (gtirb_version),
"capstone/%s@rewriting+extra-packages/next" % (capstone_version),
)
author = "GrammaTech Inc."
Expand Down
4 changes: 2 additions & 2 deletions version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION_MAJOR 1
VERSION_MINOR 10
VERSION_MAJOR 2
VERSION_MINOR 0
VERSION_PATCH 0

0 comments on commit 76fe894

Please sign in to comment.