Skip to content

Commit 86ba714

Browse files
authored
Prepare for release 2.5.0 (#62)
1 parent 1500caa commit 86ba714

30 files changed

+36
-30
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
addons:
2525
snaps:
2626
- name: dotnet-sdk
27+
confinement: classic
2728
env:
2829
- C_SHARP=yes
2930

CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.5.0
2+
- Python: Add support for handling Numpy vectors and JIT compilation with Numba (#57).
3+
- Minor docstring improvements: Use parenthesis instead of brackets to indicate open intervals (#59).
4+
- CI Improvements (#57, #58, #60).
5+
16
2.4.0
27
- Add R language support (#49, #53, #54).
38
- Update licence headers.

src/c/psychrolib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* PsychroLib (version 2.4.0) (https://github.com/psychrometrics/psychrolib).
2+
* PsychroLib (version 2.5.0) (https://github.com/psychrometrics/psychrolib).
33
* Copyright (c) 2018-2020 The PsychroLib Contributors for the current library implementation.
44
* Copyright (c) 2017 ASHRAE Handbook — Fundamentals for ASHRAE equations and coefficients.
55
* Licensed under the MIT License.

src/c/psychrolib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* PsychroLib (version 2.4.0) (https://github.com/psychrometrics/psychrolib).
2+
* PsychroLib (version 2.5.0) (https://github.com/psychrometrics/psychrolib).
33
* Copyright (c) 2018-2020 The PsychroLib Contributors for the current library implementation.
44
* Copyright (c) 2017 ASHRAE Handbook — Fundamentals for ASHRAE equations and coefficients.
55
* Licensed under the MIT License.

src/c_sharp/PsychroLib/PsychroLib.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard1.0</TargetFramework>
5-
<Version>2.4.0</Version>
5+
<Version>2.5.0</Version>
66
<PackageProjectUrl>https://github.com/psychrometrics/psychrolib</PackageProjectUrl>
77
<RepositoryUrl>https://github.com/psychrometrics/psychrolib</RepositoryUrl>
88
<PackageIcon>psychrolib_logo_64.png</PackageIcon>
@@ -12,8 +12,8 @@
1212
<Company>PsychroLib</Company>
1313
<PackageTags>net,standard,core</PackageTags>
1414
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
15-
<AssemblyVersion>2.4.0</AssemblyVersion>
16-
<FileVersion>2.4.0</FileVersion>
15+
<AssemblyVersion>2.5.0</AssemblyVersion>
16+
<FileVersion>2.5.0</FileVersion>
1717
</PropertyGroup>
1818
<ItemGroup>
1919
<None Include="$(SolutionDir)../../assets/psychrolib_logo_64.png">

src/c_sharp/PsychroLib/psychrolib.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* PsychroLib (version 2.4.0) (https://github.com/psychrometrics/psychrolib).
2+
* PsychroLib (version 2.5.0) (https://github.com/psychrometrics/psychrolib).
33
* Copyright (c) 2018-2020 The PsychroLib Contributors for the current library implementation.
44
* Copyright (c) 2017 ASHRAE Handbook — Fundamentals for ASHRAE equations and coefficients.
55
* Licensed under the MIT License.

src/fortran/psychrolib.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
! PsychroLib (version 2.4.0) (https://github.com/psychrometrics/psychrolib).
1+
! PsychroLib (version 2.5.0) (https://github.com/psychrometrics/psychrolib).
22
! Copyright (c) 2018-2020 The PsychroLib Contributors for the current library implementation.
33
! Copyright (c) 2017 ASHRAE Handbook — Fundamentals for ASHRAE equations and coefficients.
44
! Licensed under the MIT License.

src/js/psychrolib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* PsychroLib (version 2.4.0) (https://github.com/psychrometrics/psychrolib).
2+
* PsychroLib (version 2.5.0) (https://github.com/psychrometrics/psychrolib).
33
* Copyright (c) 2018-2020 The PsychroLib Contributors for the current library implementation.
44
* Copyright (c) 2017 ASHRAE Handbook — Fundamentals for ASHRAE equations and coefficients.
55
* Licensed under the MIT License.

src/python/psychrolib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PsychroLib (version 2.4.0) (https://github.com/psychrometrics/psychrolib).
1+
# PsychroLib (version 2.5.0) (https://github.com/psychrometrics/psychrolib).
22
# Copyright (c) 2018-2020 The PsychroLib Contributors for the current library implementation.
33
# Copyright (c) 2017 ASHRAE Handbook — Fundamentals for ASHRAE equations and coefficients.
44
# Licensed under the MIT License.

src/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44

55
setup(name='PsychroLib',
6-
version='2.4.0',
6+
version='2.5.0',
77
maintainer = 'The PsychroLib Developers',
88
description='Library of psychrometric functions to calculate thermodynamic properties of air',
99
author='D. Thevenard and D. Meyer',

0 commit comments

Comments
 (0)