Skip to content

Commit faaa08c

Browse files
fix version number; fix doc typo
1 parent 9f3c0ea commit faaa08c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.25) # Needed for CUDA, MPI, and CTest features
22

33
project(
44
EXP
5-
VERSION "7.9.1"
5+
VERSION "7.9.0"
66
HOMEPAGE_URL https://github.com/EXP-code/EXP
77
LANGUAGES C CXX Fortran)
88

pyEXP/CoefWrappers.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,7 @@ void CoefficientClasses(py::module &m) {
12811281
.def("WriteH5Coefs",
12821282
[](CoefClasses::Coefs& self, const std::string& filename) {
12831283
if (self.getUnits().size()!=4) {
1284-
std::cout << "Coefs::WriteH5Coefs: please set units for your coefficient set using the `setUnit()` member," << std::endl
1284+
std::cout << "Coefs::WriteH5Coefs: please set units for your coefficient set using the `setUnits()` member," << std::endl
12851285
<< " one for each unit. We suggest explicitly setting 'G', 'Length', 'Mass'," << std::endl
12861286
<< " 'Time', or optionally 'Velocity' before writing HDF5 coefficients" << std::endl;
12871287
}

0 commit comments

Comments
 (0)