Skip to content

Commit a5421af

Browse files
committed
set release version
1 parent 1d99528 commit a5421af

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

swmm-toolkit/CMakeLists.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,38 @@
44
# Created: Feb 6, 2020
55
# Modified Sep 2, 2025
66
#
7-
# Author: See AUTHORS
7+
# Author: See AUTHORS
88
#
99

10-
################################################################################
11-
################## CMAKELISTS FOR SWMM-TOOLKIT PROJECT ###################
12-
################################################################################
10+
# ###############################################################################
11+
# ################# CMAKELISTS FOR SWMM-TOOLKIT PROJECT ###################
12+
# ###############################################################################
1313

14-
cmake_minimum_required (VERSION 4.0.2)
14+
cmake_minimum_required(VERSION 4.0.2)
1515

1616
project(swmm-toolkit
1717
VERSION
18-
0.15.5
18+
0.16.1
1919
)
2020

21-
2221
# Trick here is to perform build in a python virtual environment
2322
set(Python_FIND_VIRTUALENV FIRST)
24-
#set(CMAKE_FIND_DEBUG_MODE TRUE)
23+
24+
# set(CMAKE_FIND_DEBUG_MODE TRUE)
2525
if(NOT MSVC)
2626
find_package(Python3 REQUIRED COMPONENTS Interpreter Development.Module)
2727
else()
2828
find_package(Python3 REQUIRED COMPONENTS Interpreter Development)
2929
endif()
30-
#set(CMAKE_FIND_DEBUG_MODE FALSE)
3130

31+
# set(CMAKE_FIND_DEBUG_MODE FALSE)
3232

3333
# SWIG is a build requirement so needs to be installed first
3434
find_package(SWIG REQUIRED)
3535
cmake_policy(SET CMP0078 NEW)
3636
cmake_policy(SET CMP0086 NEW)
3737
include(${SWIG_USE_FILE})
3838

39-
4039
# Add project subdirectories
4140
add_subdirectory(swmm-solver)
4241

swmm-toolkit/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "swmm-toolkit"
7-
version = "0.16.0"
7+
version = "0.16.1"
88
description = "PySWMM SWMM Python Toolkit"
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
license = "CC0-1.0 AND (MIT OR Apache-2.0)"

swmm-toolkit/src/swmm/toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
__credits__ = "Colleen Barr"
1919
__license__ = "CC0 1.0 Universal"
2020

21-
__version__ = "0.16.0"
21+
__version__ = "0.16.1"
2222
__date__ = "September 4, 2025"
2323

2424
__maintainer__ = "Michael Tryby"

0 commit comments

Comments
 (0)