Skip to content

Commit 85b438e

Browse files
committed
Release version 26.03.1
Add patch version to version number. This will allow us to add support for newer versions of LLVM without bumping the major/minor version. Add NEWS entry for new release.
1 parent cddb351 commit 85b438e

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22
on: [push, pull_request]
33

44
env:
5-
RELEASE_VERSION: "21.10"
5+
RELEASE_VERSION: "26.03.1"
66
RELEASE_LLVM: "22"
77

88
jobs:

CMakeLists.txt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
# source code.
88

99
cmake_minimum_required(VERSION 3.22)
10-
project(Oclgrind)
11-
set(Oclgrind_VERSION_MAJOR 21)
12-
set(Oclgrind_VERSION_MINOR 10)
10+
project(Oclgrind VERSION 26.03.1)
1311

1412
include(CheckIncludeFiles)
1513
include(CheckIncludeFileCXX)
@@ -447,10 +445,6 @@ set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "OpenCL device simulator")
447445
set(CPACK_PACKAGE_DESCRIPTION_FILE
448446
"${CMAKE_SOURCE_DIR}/src/install/cpack-description")
449447
set(CPACK_PACKAGE_VENDOR "University of Bristol")
450-
set(CPACK_PACKAGE_VERSION_MAJOR ${Oclgrind_VERSION_MAJOR})
451-
set(CPACK_PACKAGE_VERSION_MINOR ${Oclgrind_VERSION_MINOR})
452-
set(CPACK_PACKAGE_VERSION "${Oclgrind_VERSION_MAJOR}.${Oclgrind_VERSION_MINOR}")
453-
set(CPACK_PACKAGE_VERSION_PATCH "0")
454448

455449
# CPack RPM config
456450
set(CPACK_RPM_PACKAGE_GROUP "Development/Tools")

NEWS

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
For more information, please visit the Oclgrind Wiki:
22
https://github.com/jrprice/Oclgrind/wiki
33

4-
Oclgrind Next
5-
=============
6-
- Added support for LLVM 14
7-
- Dropped support for LLVM 11
4+
Oclgrind 26.03.1
5+
================
6+
- Enable OpenCL 3.0 by default
7+
- Added support for LLVM 18, 19, 20, 21, and 22
8+
- Dropped support for all older versions of LLVM
9+
- Bump C++ requirement to C++17
10+
811

912
Oclgrind 21.10
1013
==============

config.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define PACKAGE_VERSION "@Oclgrind_VERSION_MAJOR@.@Oclgrind_VERSION_MINOR@"
1+
#define PACKAGE_VERSION "@CMAKE_PROJECT_VERSION@"
22

33
#define HAVE_READLINE @HAVE_READLINE@
44

0 commit comments

Comments
 (0)