From 2765bb183659967a68fe8334b44e6c2f07e5028e Mon Sep 17 00:00:00 2001 From: MikePopoloski Date: Sat, 29 Oct 2022 08:11:35 -0400 Subject: [PATCH] Bump version number --- CHANGELOG.md | 14 ++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b92dc3fb1..55e567fc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Language Support +* + +### General Features +* + +### Improvements +* + +### Fixes +* + + +## [v2.0] - 2022-10-29 ### Highlights This release focuses on making slang much more usable as a library. There's been a large amount of refactoring and reorganizing to make usage more straightforward. The CMake build was rewritten, and documentation showing how to diff --git a/CMakeLists.txt b/CMakeLists.txt index f11c84770..f9281c6c5 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 1) +set(SLANG_VERSION_MAJOR 2) set(SLANG_VERSION_MINOR 0) set(SLANG_VERSION_STRING "${SLANG_VERSION_MAJOR}.${SLANG_VERSION_MINOR}.${SLANG_VERSION_PATCH}")