Bump version to 5.0, resolves #167

This commit is contained in:
Tom Lin 2023-10-07 15:14:28 +01:00
parent a27abfe296
commit 01ef17e8b4
9 changed files with 9 additions and 9 deletions

View File

@ -4,7 +4,7 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
cmake_policy(SET CMP0135 NEW)
endif ()
project(BabelStream VERSION 4.0 LANGUAGES CXX C)
project(BabelStream VERSION 5.0 LANGUAGES CXX C)
# uncomment for debugging build issues:
#set(CMAKE_VERBOSE_MAKEFILE ON)

View File

@ -18,7 +18,7 @@ else
COMPILER=gcc
endif
FCFLAGS += -DVERSION_STRING="4.0"
FCFLAGS += -DVERSION_STRING="5.0"
#FCFLAGS += -DUSE_INT32
ifeq ($(IMPLEMENTATION),DoConcurrent)

View File

@ -7,7 +7,7 @@
<artifactId>java-stream</artifactId>
<groupId>javastream</groupId>
<version>4.0</version>
<version>5.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

View File

@ -382,7 +382,7 @@ public class Main {
}
}
private static final String VERSION = "4.0";
private static final String VERSION = "5.0";
private static final float START_SCALAR = 0.4f;
private static final float START_A = 0.1f;

View File

@ -164,7 +164,7 @@ end
const DefaultInit = (0.1, 0.2, 0.0)
const DefaultScalar = 0.4
const Version = "4.0"
const Version = "5.0"
function main()

View File

@ -15,7 +15,7 @@
#include <iomanip>
#include <cstring>
#define VERSION_STRING "4.0"
#define VERSION_STRING "5.0"
#include "Stream.h"

View File

@ -1,6 +1,6 @@
[package]
name = "rust-stream"
version = "4.0.0"
version = "5.0.0"
authors = ["Wei-Chen Lin <wl14928@bristol.ac.uk>"]
edition = "2018"

View File

@ -4,7 +4,7 @@ lazy val root = (project in file("."))
.enablePlugins(NativeImagePlugin)
.settings(
scalaVersion := "3.3.1",
version := "4.0",
version := "5.0",
organization := "uk.ac.bristol.uob-hpc",
organizationName := "University of Bristol",
Compile / mainClass := mainCls,

View File

@ -110,7 +110,7 @@ given DoubleFractional: Fractional[Double] with
object App:
final val Version: String = "4.0"
final val Version: String = "5.0"
case class Config[@specialized(Double, Float) A](
options: Options,