Skip to content

Commit 2a90fce

Browse files
committed
patch level bump so I can rebuild the PPA packages.
1 parent 7b36fcd commit 2a90fce

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Makefile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
#
33
# This file is part of the Yices SMT Solver.
44
# Copyright (C) 2017 SRI International.
5-
#
5+
#
66
# Yices is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
10-
#
10+
#
1111
# Yices is distributed in the hope that it will be useful,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU General Public License for more details.
15-
#
15+
#
1616
# You should have received a copy of the GNU General Public License
1717
# along with Yices. If not, see <http://www.gnu.org/licenses/>.
1818
#
@@ -50,7 +50,7 @@ YICES_TOP_DIR=$(shell pwd)
5050
#
5151
MAJOR = 2
5252
MINOR = 5
53-
PATCH_LEVEL = 3
53+
PATCH_LEVEL = 4
5454

5555
YICES_VERSION = $(MAJOR).$(MINOR).$(PATCH_LEVEL)
5656

@@ -286,4 +286,3 @@ checkgmake:
286286
.PHONY: checkgmake show-config doc all bin lib obj dist \
287287
static-bin static-lib static-obj static-dist install \
288288
test static-test
289-

src/bindings/python/yices.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ def main():
9797
# 1.0.4 - 2.5.3 - 9/28/2017 - LD_LIBRARY_PATH hackery. #
9898
# 1.0.5 - 2.5.3 - 9/28/2017 - LD_LIBRARY_PATH hackery, II. #
9999
# 1.0.6 - 2.5.3 - 9/28/2017 - LD_LIBRARY_PATH hackery, III. #
100+
# 1.0.7 - 2.5.4 - 9/29/2017 - patch level version bump for PPA goodness #
100101
# #
101102
########################################################################################
102103

@@ -105,12 +106,13 @@ def main():
105106
# while the bindings are moving so fast we should keep them separate.
106107
#
107108
#
108-
yices_python_version = '1.0.6'
109+
yices_python_version = '1.0.7'
109110

110111
#
111112
# 1.0.1 needs yices_has_mcsat
113+
# 1.0.1-7 needs the _fd api additions that appear in 2.5.4
112114
#
113-
yices_recommended_version = '2.5.3'
115+
yices_recommended_version = '2.5.4'
114116

115117

116118
class YicesException(Exception):
@@ -150,8 +152,8 @@ def wrapper(*args, **kwargs):
150152
# really help anyway, since we would probably be getting the sudo
151153
# version not the user's version. Probably the real issue is that
152154
# on Linux yices installs in /usr/local/lib but the ctype loading probably
153-
# expects ii to be in some x86_64 archified directory. HOWEVER, if find_library
154-
# can find the name correctly, you would expect the it could also load the
155+
# expects it to be in some x86_64 archified directory. HOWEVER, if find_library
156+
# can find the name correctly, you would expect that it could also load the
155157
# puppy correctly.
156158
#
157159
def _loadYicesFromPath(path, library):

src/include/yices.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ extern "C" {
8383

8484
#define __YICES_VERSION 2
8585
#define __YICES_VERSION_MAJOR 5
86-
#define __YICES_VERSION_PATCHLEVEL 3
86+
#define __YICES_VERSION_PATCHLEVEL 4
8787

8888

8989
/*

0 commit comments

Comments
 (0)