summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-31 08:53:33 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-31 08:53:33 +0100
commit760331f1fc0d71c66b19df4bf43941fea630175e (patch)
treeddfa66d55a290d5cc18030d8138044c9bf4c5b2f
parent7b1bd630a92b042c8cc6151590edd11760c2d0b5 (diff)
chore: update version of OCL.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--include/ocl.hpp22
-rw-r--r--include/ocl/version.hpp9
m---------libs/core0
3 files changed, 21 insertions, 10 deletions
diff --git a/include/ocl.hpp b/include/ocl.hpp
index 6019e1e..a662435 100644
--- a/include/ocl.hpp
+++ b/include/ocl.hpp
@@ -1,13 +1,14 @@
-/*
- * File: ocl.hpp
- * Purpose: Open C++ Libraries.
- * Author: Amlal El Mahrouss (amlal@nekernel.org)
- * Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License.
- */
+// Copyright 2023-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Distributed under the Boost Software License, Version 1.0. (See accompanying
+// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+// Official repository: https://github.com/ocl-org/ocl
#ifndef __OCL_HPP
#define __OCL_HPP
+// Version header
+#include <ocl/version.hpp>
+
// Mandatory core headers.
#include <ocl/allocator_op.hpp>
#include <ocl/crc_hash.hpp>
@@ -18,8 +19,13 @@
#ifdef __OCL_FIX
-# include <ocl/fix/parser.hpp>
-# include <ocl/fix/checksum.hpp>
+# include <ocl/fix.hpp>
+
+#endif
+
+#ifdef __OCL_TPROC
+
+# include <ocl/tproc.hpp>
#endif
diff --git a/include/ocl/version.hpp b/include/ocl/version.hpp
index 7ae170a..969a099 100644
--- a/include/ocl/version.hpp
+++ b/include/ocl/version.hpp
@@ -1,14 +1,19 @@
+// Copyright 2023-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Distributed under the Boost Software License, Version 1.0. (See accompanying
+// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+// Official repository: https://github.com/ocl-org/ocl
+
#ifndef __OCL_VERSION_HPP
#define __OCL_VERSION_HPP
// This is a Binary Encoded Decimal of the OCL's version.
// Which will be incremented each time a new release is done.
-#define OCL_VERSION 0x000100
+#define OCL_VERSION 0x000200
// This is the library version, which applies the following pattern:
// <semver> use it to detect what version of the OCL you're using.
-#define OCL_LIB_VERSION "00_01_"
+#define OCL_LIB_VERSION "00_02_"
#endif
diff --git a/libs/core b/libs/core
-Subproject 7c899dbb66486630804a8f048a8aa4f2385389f
+Subproject 8e2394ed661dd223fb02b3a63fb03ca869bad44