From 2158d2c61c0608363c66b9665ca4785e8c290b37 Mon Sep 17 00:00:00 2001
From: Ben Cumming <bcumming@cscs.ch>
Date: Thu, 7 Jan 2021 10:57:23 +0100
Subject: [PATCH] Version bump and ready for release (#1301)

---
 MANIFEST.in | 1 +
 VERSION     | 2 +-
 setup.py    | 5 +++--
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/MANIFEST.in b/MANIFEST.in
index 58cd8c0b..22092fd9 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -12,6 +12,7 @@ graft modcc
 graft python
 graft sup
 graft test
+graft arborio
 
 prune ext/sphinx_rtd_theme
 prune ext/google-benchmark
diff --git a/VERSION b/VERSION
index 1351681f..2eb3c4fe 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.4.1-dev
+0.5
diff --git a/setup.py b/setup.py
index 950d1909..8d62906a 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,8 @@ class CL_opt:
             CL_opt.instance = {'mpi': False,
                                'gpu': 'none',
                                'vec': False,
-                               'arch': 'native'}
+                               'arch': 'native',
+                               'bundled': True}
 
     def settings(self):
         return CL_opt.instance
@@ -111,7 +112,7 @@ class cmake_build(build_ext):
             '-DARB_VECTORIZE={}'.format('on' if opt['vec'] else 'off'),
             '-DARB_ARCH={}'.format(opt['arch']),
             '-DARB_GPU={}'.format(opt['gpu']),
-            '-DARB_USE_BUNDLED_LIBS={}'.format('on' if opt['bundled'] else 'off']),
+            '-DARB_USE_BUNDLED_LIBS={}'.format('on' if opt['bundled'] else 'off'),
             '-DCMAKE_BUILD_TYPE=Release' # we compile with debug symbols in release mode.
         ]
 
-- 
GitLab