Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/topic/timw/require-cmake-3.15'
Browse files Browse the repository at this point in the history
* origin/topic/timw/require-cmake-3.15:
  Require CMake 3.15, inline with other Zeek projects
  • Loading branch information
timwoj committed Jan 29, 2025
2 parents 76e39f5 + c74334b commit 9302f28
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.2-4 | 2025-01-29 09:03:57 -0700

* Require CMake 3.15, inline with other Zeek projects (Tim Wojtulewicz, Corelight)

1.2-2 | 2025-01-21 09:08:38 -0700

* Enforce using the right bash.exe on Windows (Tim Wojtulewicz)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
project(btest)

# Install scripts
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
..
.. Version number is filled in automatically.

.. |version| replace:: 1.2-2
.. |version| replace:: 1.2-4

==================================================
BTest - A Generic Driver for Powerful System Tests
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2-2
1.2-4
2 changes: 1 addition & 1 deletion btest
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ else:
import multiprocessing.managers as mp_managers
import multiprocessing.sharedctypes as mp_sharedctypes

VERSION = "1.2-2" # Automatically filled in.
VERSION = "1.2-4" # Automatically filled in.

Name = "btest"
Config = None
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
py_modules = ["btest-sphinx"]

setup(
version="1.2.dev2", # Filled in automatically.
version="1.2.dev4", # Filled in automatically.
py_modules=py_modules,
)

0 comments on commit 9302f28

Please sign in to comment.