Skip to content

Commit 72c70c7

Browse files
committed
Update version number to 3.0
1 parent 7ad8e38 commit 72c70c7

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
cmake_minimum_required(VERSION 3.4.3 FATAL_ERROR)
4242

4343
project(ikos)
44-
set(PACKAGE_VERSION "2.2")
44+
set(PACKAGE_VERSION "3.0")
4545

4646
#
4747
# Build settings

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ IKOS
33

44
[![Build Status](https://travis-ci.org/NASA-SW-VnV/ikos.svg?branch=master)](https://travis-ci.org/NASA-SW-VnV/ikos)
55
[![License](https://img.shields.io/badge/license-NOSA%201.3-blue.svg)](LICENSE.pdf)
6-
[![Release](https://img.shields.io/badge/release-v2.2-orange.svg)](https://github.com/NASA-SW-VnV/ikos/releases/tag/v2.2)
6+
[![Release](https://img.shields.io/badge/release-v3.0-orange.svg)](https://github.com/NASA-SW-VnV/ikos/releases/tag/v3.0)
77

88
IKOS (Inference Kernel for Open Static Analyzers) is a static analyzer for C/C++ based on the theory of Abstract Interpretation.
99

doc/install/CENTOS_6.10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ After installation, the install directory will contain the following structure:
7373
│ ├── include
7474
│ ├── lib
7575
│ └── share
76-
├── ikos-2.2
76+
├── ikos-3.0
7777
│ ├── bin
7878
│ ├── include
7979
│ ├── lib

doc/install/CENTOS_7.6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ After installation, the install directory will contain the following structure:
6969
│ ├── bin
7070
│ ├── doc
7171
│ └── share
72-
├── ikos-2.2
72+
├── ikos-3.0
7373
│ ├── bin
7474
│ ├── include
7575
│ ├── lib

doc/install/FEDORA_29.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ After installation, the install directory will contain the following structure:
4545
│ ├── bin
4646
│ ├── include
4747
│ └── lib
48-
├── ikos-2.2
48+
├── ikos-3.0
4949
│ ├── bin
5050
│ ├── include
5151
│ ├── lib

doc/install/FEDORA_30.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ After installation, the install directory will contain the following structure:
4545
│ ├── bin
4646
│ ├── include
4747
│ └── lib
48-
├── ikos-2.2
48+
├── ikos-3.0
4949
│ ├── bin
5050
│ ├── include
5151
│ ├── lib

doc/install/RHEL_6.10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ After installation, the install directory will contain the following structure:
6464
│ ├── include
6565
│ ├── lib
6666
│ └── share
67-
├── ikos-2.2
67+
├── ikos-3.0
6868
│ ├── bin
6969
│ ├── include
7070
│ ├── lib

doc/install/RHEL_7.7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ After installation, the install directory will contain the following structure:
6060
│ ├── lib64
6161
│ ├── libexec
6262
│ └── share
63-
├── ikos-2.2
63+
├── ikos-3.0
6464
│ ├── bin
6565
│ ├── include
6666
│ ├── lib

doc/install/ROOTLESS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ After installation, the install directory will contain the following structure:
6262
├── activate-full
6363
├── activate-minimal
6464
├── [...]
65-
├── ikos-2.2
65+
├── ikos-3.0
6666
│ ├── bin
6767
│ ├── include
6868
│ ├── lib
@@ -103,7 +103,7 @@ $ source /path/to/ikos-install/activate-full
103103
To run the tests:
104104

105105
```
106-
$ cd /path/to/ikos-build/ikos-2.2
106+
$ cd /path/to/ikos-build/ikos-3.0
107107
$ make check
108108
```
109109

script/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
progname=$(basename "$0")
7070

7171
# Version settings
72-
ikos_version="2.2"
72+
ikos_version="3.0"
7373
gcc_required_version="4.9.2"
7474
clang_required_version="3.4"
7575
apple_clang_required_version="3.4"

0 commit comments

Comments
 (0)