From 7bcff261b46a7c72aef0be3a24b25334d74077ea Mon Sep 17 00:00:00 2001 From: MikePopoloski Date: Sun, 21 Apr 2024 14:26:15 -0400 Subject: [PATCH] Bump version for 6.0 --- CHANGELOG.md | 7 +++++++ CMakeLists.txt | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c9d503f7..5bbcd1aa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Language Support +### General Features +### Improvements +### Fixes + + +## [v6.0] - 2024-04-21 +### Language Support * Added `--allow-bare-value-param-assigment` (included in 'vcs' compat mode) to allow a non-standard module instantiation syntax where a single parameter value can be supplied without including parentheses * Added `--allow-self-determined-stream-concat` (included in 'vcs' compat mode) to allow the use of streaming concatenation expressions in self-determined contexts (instead of just in assignments) * Added `--allow-multi-driven-locals` (included in 'vcs' compat mode) to allow subroutine local variables to be driven by multiple always_ff / always_comb blocks diff --git a/CMakeLists.txt b/CMakeLists.txt index ef52a8c95..69ad412b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) include(gitversion) get_git_version(SLANG_VERSION_PATCH SLANG_VERSION_HASH) -set(SLANG_VERSION_MAJOR 5) +set(SLANG_VERSION_MAJOR 6) set(SLANG_VERSION_MINOR 0) set(SLANG_VERSION_STRING "${SLANG_VERSION_MAJOR}.${SLANG_VERSION_MINOR}.${SLANG_VERSION_PATCH}")