Skip to content

Commit cc0e6a6

Browse files
committed
Release 6.0.0
Signed-off-by: Raghavan Kanagaraj <raghavan.kanagaraj@intel.com>
1 parent ccd9d8e commit cc0e6a6

File tree

6 files changed

+26
-6
lines changed

6 files changed

+26
-6
lines changed

ChangeLog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
=======================================================================
2+
Release v24.05 Jun 2024
3+
=======================================================================
4+
5+
Contributors (alphabetical order):
6+
Babu Moger <babu.moger@amd.com>
7+
Marcel Cornu <marcel.d.cornu@intel.com>
8+
Raghavan Kanagaraj <raghavan.kanagaraj@intel.com>
9+
Roman Storozhenko <roman.storozhenko@intel.com>
10+
11+
1. Library:
12+
- Added AMD SMBA support
13+
2. PQoS
14+
- Added AMD SMBA support
15+
3. General:
16+
- Bug fixes
17+
118
=======================================================================
219
Release v23.11 Nov 2023
320
=======================================================================

lib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
include ../pre-build.mk
3737

3838
LIB = libpqos
39-
VERSION = 5.0.0
40-
SO_VERSION = 5
39+
VERSION = 6.0.0
40+
SO_VERSION = 6
4141
SHARED ?= y
4242
LDFLAGS = -L. -lpthread -z noexecstack -z relro -z now
4343
CFLAGS = -pthread -I./ -D_GNU_SOURCE \

lib/pqos.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ extern "C" {
6262
* =======================================
6363
*/
6464

65-
#define PQOS_VERSION 50000 /**< version 5.0.0 */
65+
#define PQOS_VERSION 60000 /**< version 6.0.0 */
6666
#define PQOS_MAX_COS 16 /**< 16 x COS */
6767
#define PQOS_MAX_L3CA_COS PQOS_MAX_COS
6868
#define PQOS_MAX_L2CA_COS PQOS_MAX_COS

lib/python/pqos/pqos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def __new__(cls):
8585
def __init__(self):
8686
"Finds PQoS library and constructs a new object."
8787

88-
self.lib = ctypes.cdll.LoadLibrary('libpqos.so.5')
88+
self.lib = ctypes.cdll.LoadLibrary('libpqos.so.6')
8989

9090
def init(self, interface, log_file=None, log_callback=None,
9191
log_context=None, verbose='default'):

lib/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pqos"
3-
version = "5.0.0"
3+
version = "6.0.0"
44
description = "Python interface for Intel(R) RDT PQoS library"
55
authors = [
66
{ name = "Michal Aleksinski", email = "michalx.aleksinski@intel.com"},

rpm/intel-cmt-cat.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2525

2626
%global githubname intel-cmt-cat
27-
%global githubver 4.6.1
27+
%global githubver 6.0.0
2828

2929
%if %{defined githubsubver}
3030
%global githubfull %{githubname}-%{githubver}.%{githubsubver}
@@ -181,6 +181,9 @@ install -m 0644 %{_builddir}/%{githubfull}/examples/c/CMT_MBM/monitor_app.c %{bu
181181
%doc %{_usrsrc}/%{githubfull}/LICENSE
182182

183183
%changelog
184+
* Wed Jun 05 2024 Raghavan Kanagaraj <raghavan.kanagaraj@intel.com> 6.0.0-1
185+
- New release 6.0.0
186+
184187
* Wed Nov 1 2023 Raghavan Kanagaraj <raghavan.kanagaraj@intel.com> 5.0.0-1
185188
- New release 5.0.0
186189

0 commit comments

Comments
 (0)