Skip to content

Commit

Permalink
chore: version 4.21.06.2
Browse files Browse the repository at this point in the history
  • Loading branch information
soonho-tri committed Jun 19, 2021
1 parent 436d56a commit 4067225
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sudo apt-get install curl
curl -fsSL https://raw.githubusercontent.com/dreal/dreal4/master/setup/ubuntu/18.04/install.sh | sudo bash

# Test the installation.
DREAL_VERSION=4.21.06.1
DREAL_VERSION=4.21.06.2
/opt/dreal/${DREAL_VERSION}/bin/dreal
```

Expand Down Expand Up @@ -196,7 +196,7 @@ export PKG_CONFIG_PATH=/usr/local/opt/ibex@2.7.4/share/pkgconfig:${PKG_CONFIG_PA
Ubuntu 20.04 / 18.04:

```bash
export PKG_CONFIG_PATH=/opt/dreal/4.21.06.1/lib/pkgconfig:/opt/libibex/2.7.4/share/pkgconfig:${PKG_CONFIG_PATH}
export PKG_CONFIG_PATH=/opt/dreal/4.21.06.2/lib/pkgconfig:/opt/libibex/2.7.4/share/pkgconfig:${PKG_CONFIG_PATH}
```

Then, `pkg-config dreal --cflags` and `pkg-config dreal --libs` should
Expand Down
2 changes: 1 addition & 1 deletion dreal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def logical_or(*formulas):
return reduce(__logical_or, formulas)


__version__ = "4.21.06.1".replace(".0", ".")
__version__ = "4.21.06.2".replace(".0", ".")

# Add aliases
And = logical_and
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from setuptools.command.bdist_egg import bdist_egg as _bdist_egg
from setuptools.command.develop import develop as _develop

VERSION = '4.21.06.1'.replace(".0", ".")
VERSION = '4.21.06.2'.replace(".0", ".")
ROOT_DIR = os.path.abspath(os.path.dirname(__file__))
SRC_DIR = os.path.join(ROOT_DIR)

Expand Down
4 changes: 2 additions & 2 deletions setup/ubuntu/18.04/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ add-apt-repository ppa:dreal/dreal --no-update -y # For libibex-dev
apt-get update || (sleep 30; apt-get update)

# Install dReal
DREAL_VERSION=4.21.06.1
DREAL_VERSION=4.21.06.2
DREAL_DEBNAME=dreal_${DREAL_VERSION}_amd64.deb
DREAL_URL=https://github.com/dreal/dreal4/releases/download/${DREAL_VERSION}/${DREAL_DEBNAME}
DREAL_SHA256=c105906b92960fc675cd58751d735b3d465457822ceb6fabaf146c335d411f96
DREAL_SHA256=c1798357bd967bf84b06fdaf7e962e102ff6703b3dee546fdc02862a1ecc09f1
apt-get install --no-install-recommends wget -y
wget "${DREAL_URL}"
if echo "${DREAL_SHA256} ${DREAL_DEBNAME}" | sha256sum -c; then
Expand Down
4 changes: 2 additions & 2 deletions setup/ubuntu/20.04/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ add-apt-repository ppa:dreal/dreal --no-update -y # For libibex-dev
apt-get update || (sleep 30; apt-get update)

# Install dReal
DREAL_VERSION=4.21.06.1
DREAL_VERSION=4.21.06.2
DREAL_DEBNAME=dreal_${DREAL_VERSION}_amd64.deb
DREAL_URL=https://github.com/dreal/dreal4/releases/download/${DREAL_VERSION}/${DREAL_DEBNAME}
DREAL_SHA256=c105906b92960fc675cd58751d735b3d465457822ceb6fabaf146c335d411f96
DREAL_SHA256=c1798357bd967bf84b06fdaf7e962e102ff6703b3dee546fdc02862a1ecc09f1
apt-get install --no-install-recommends wget -y
wget "${DREAL_URL}"
if echo "${DREAL_SHA256} ${DREAL_DEBNAME}" | sha256sum -c; then
Expand Down
2 changes: 1 addition & 1 deletion tools/dreal.bzl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Based on Drake's drake.bzl file,
# https://github.com/RobotLocomotion/drake/blob/master/tools/drake.bzl.

DREAL_VERSION = "4.21.06.1"
DREAL_VERSION = "4.21.06.2"

DREAL_PREFIX = "opt/dreal/%s" % DREAL_VERSION

Expand Down

0 comments on commit 4067225

Please sign in to comment.