Skip to content

Commit

Permalink
chore: Version 4.20.09.1
Browse files Browse the repository at this point in the history
  • Loading branch information
soonho-tri committed Sep 17, 2020
1 parent 03b1570 commit bb087fc
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sudo apt-get install curl
curl -fsSL https://raw.githubusercontent.com/dreal/dreal4/master/setup/ubuntu/16.04/install.sh | sudo bash

# Test the installation.
DREAL_VERSION=4.20.08.1
DREAL_VERSION=4.20.09.1
/opt/dreal/${DREAL_VERSION}/bin/dreal
```

Expand Down Expand Up @@ -206,7 +206,7 @@ export PKG_CONFIG_PATH=/usr/local/opt/[email protected]/share/pkgconfig:${PKG_CONFIG_PA
Ubuntu 20.04 / 18.04 / 16.04:

```bash
export PKG_CONFIG_PATH=/opt/dreal/4.20.08.1/lib/pkgconfig:/opt/libibex/2.7.4/share/pkgconfig:${PKG_CONFIG_PATH}
export PKG_CONFIG_PATH=/opt/dreal/4.20.09.1/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.20.08.1".replace(".0", ".")
__version__ = "4.20.09.1".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.20.08.1'.replace(".0", ".")
VERSION = '4.20.09.1'.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/16.04/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ add-apt-repository ppa:dreal/dreal -y # For libibex-dev
apt-get update

# Install dReal
DREAL_VERSION=4.20.08.1
DREAL_VERSION=4.20.09.1
DREAL_DEBNAME=dreal_${DREAL_VERSION}_amd64.deb
DREAL_URL=https://dl.bintray.com/dreal/dreal/${DREAL_DEBNAME}
DREAL_SHA256=2892fcc2029219d3b8c0c1d02171bdc31a2c1ed6e3825e79b5b8346840f15f11
DREAL_SHA256=b93355bf1059510469606e85ebd99e3962440b1d242d67dec9f323afb4d8260c
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/18.04/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ add-apt-repository ppa:dreal/dreal -y # For libibex-dev
apt-get update

# Install dReal
DREAL_VERSION=4.20.08.1
DREAL_VERSION=4.20.09.1
DREAL_DEBNAME=dreal_${DREAL_VERSION}_amd64.deb
DREAL_URL=https://dl.bintray.com/dreal/dreal/${DREAL_DEBNAME}
DREAL_SHA256=2892fcc2029219d3b8c0c1d02171bdc31a2c1ed6e3825e79b5b8346840f15f11
DREAL_SHA256=b93355bf1059510469606e85ebd99e3962440b1d242d67dec9f323afb4d8260c
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 @@ -12,10 +12,10 @@ add-apt-repository ppa:dreal/dreal -y # For libibex-dev
apt-get update

# Install dReal
DREAL_VERSION=4.20.08.1
DREAL_VERSION=4.20.09.1
DREAL_DEBNAME=dreal_${DREAL_VERSION}_amd64.deb
DREAL_URL=https://dl.bintray.com/dreal/dreal/${DREAL_DEBNAME}
DREAL_SHA256=2892fcc2029219d3b8c0c1d02171bdc31a2c1ed6e3825e79b5b8346840f15f11
DREAL_SHA256=b93355bf1059510469606e85ebd99e3962440b1d242d67dec9f323afb4d8260c
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.20.08.1"
DREAL_VERSION = "4.20.09.1"

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

Expand Down

0 comments on commit bb087fc

Please sign in to comment.