From aabb9d801dea45f5de138b0d3d80e87223d13587 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Sat, 28 Sep 2024 16:40:57 -0400 Subject: [PATCH] breaking change: iterator is now in blt/iterator --- CMakeLists.txt | 2 +- include/blt/{std => iterator}/iterator.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename include/blt/{std => iterator}/iterator.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 039d660..c5a9e91 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 0.21.6) +set(BLT_VERSION 1.0.0) set(BLT_TEST_VERSION 0.0.1) set(BLT_TARGET BLT) diff --git a/include/blt/std/iterator.h b/include/blt/iterator/iterator.h similarity index 100% rename from include/blt/std/iterator.h rename to include/blt/iterator/iterator.h