diff --git a/README.md b/README.md index bec5b2b2..48292682 100644 --- a/README.md +++ b/README.md @@ -35,14 +35,14 @@ Please help us better understand the ROSCO user-base and how we can improve rosc If the ROSCO Toolbox played a role in your research, please cite it. This software can be cited as: - NREL: ROSCO. Version 2.4.0, https://github.com/NREL/ROSCO, 2021. + NREL: ROSCO. Version 2.4.1, https://github.com/NREL/ROSCO, 2021. For LaTeX users: ``` @misc{ROSCO_toolbox_2021, author = {NREL}, - title = {{ROSCO. Version 2.4.0}}, + title = {{ROSCO. Version 2.4.1}}, year = {2021}, publisher = {GitHub}, journal = {GitHub repository}, diff --git a/ROSCO/CMakeLists.txt b/ROSCO/CMakeLists.txt index 2134e7d6..a6ef8217 100644 --- a/ROSCO/CMakeLists.txt +++ b/ROSCO/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.6) -project(ROSCO VERSION 2.4.0 LANGUAGES Fortran) +project(ROSCO VERSION 2.4.1 LANGUAGES Fortran) set(CMAKE_Fortran_MODULE_DIRECTORY "${CMAKE_BINARY_DIR}/ftnmods") diff --git a/ROSCO/src/Constants.f90 b/ROSCO/src/Constants.f90 index ddcd070c..9feed5ea 100644 --- a/ROSCO/src/Constants.f90 +++ b/ROSCO/src/Constants.f90 @@ -10,7 +10,7 @@ ! specific language governing permissions and limitations under the License. MODULE Constants - Character(*), PARAMETER :: rosco_version = 'v2.4.0' ! ROSCO version + Character(*), PARAMETER :: rosco_version = 'v2.4.1' ! ROSCO version REAL(8), PARAMETER :: RPS2RPM = 9.5492966 ! Factor to convert radians per second to revolutions per minute. REAL(8), PARAMETER :: R2D = 57.295780 ! Factor to convert radians to degrees. REAL(8), PARAMETER :: D2R = 0.0175 ! Factor to convert degrees to radians. diff --git a/ROSCO_toolbox/__init__.py b/ROSCO_toolbox/__init__.py index e290adc2..f8ed7f17 100644 --- a/ROSCO_toolbox/__init__.py +++ b/ROSCO_toolbox/__init__.py @@ -3,4 +3,4 @@ __author__ = """Nikhar J. Abbas and Daniel S. Zalkind""" __email__ = 'nikhar.abbas@nrel.gov' -__version__ = '2.4.0' \ No newline at end of file +__version__ = '2.4.1' \ No newline at end of file diff --git a/setup.py b/setup.py index b6a8edeb..716f9fbb 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ EMAIL = 'nikhar.abbas@nrel.gov' AUTHOR = 'NREL, National Wind Technology Center' REQUIRES_PYTHON = '>=3.4' -VERSION = '2.4.0' +VERSION = '2.4.1' # These packages are required for all of the code to be executed. # - Maybe you can get away with older versions...