Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkuma committed Aug 22, 2024
1 parent b064427 commit 2947de5
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 2 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,25 @@ the MIT license (see [LICENSE.md](LICENSE.md)).

## Releases

### 2.0.0 (2024-08-22)

- Fixed pts to prof conversion.
- Fixed ua and va calculation from wdd and wds. The sign was flipped.
- Fixed an error in the formula for moist adiabatic lapse rate calculation.
- Potential temperature is now calculated relative to standard pressure (1000
hPa) instead of surface pressure.
- imet: Fixed surface pressure reading. The units were not converted to Pa from
hPa.
- Refactored variable names and headers.
- Removed parcel variables and lifting level variables.
- More complex and recursive derivation of physical quantities.
- New variables: virtual potential temperature, LCL, condensation pressure,
density, lower tropospheric stability.
- Renamed raw format to intermediate format.
- Python API for calculating physical quantities.
- Refactored code.
- Improved documentation.

### 1.1.0 (2023-11-17)

- Fixed a bool type error due to a removal of the type from the numpy package.
Expand Down
19 changes: 19 additions & 0 deletions README.md.template
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,25 @@ the MIT license (see [LICENSE.md](LICENSE.md)).

## Releases

### 2.0.0 (2024-08-22)

- Fixed pts to prof conversion.
- Fixed ua and va calculation from wdd and wds. The sign was flipped.
- Fixed an error in the formula for moist adiabatic lapse rate calculation.
- Potential temperature is now calculated relative to standard pressure (1000
hPa) instead of surface pressure.
- imet: Fixed surface pressure reading. The units were not converted to Pa from
hPa.
- Refactored variable names and headers.
- Removed parcel variables and lifting level variables.
- More complex and recursive derivation of physical quantities.
- New variables: virtual potential temperature, LCL, condensation pressure,
density, lower tropospheric stability.
- Renamed raw format to intermediate format.
- Python API for calculating physical quantities.
- Refactored code.
- Improved documentation.

### 1.1.0 (2023-11-17)

- Fixed a bool type error due to a removal of the type from the numpy package.
Expand Down
2 changes: 1 addition & 1 deletion rstool/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import signal
signal.signal(signal.SIGINT, lambda signal, frame: sys.exit(0))

__version__ = '2.0.0-dev'
__version__ = '2.0.0'

import datetime as dt
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='rstool',
version='2.0.0-dev',
version='2.0.0',
py_modules=['rstool'],
entry_points={
'console_scripts': ['rstool=rstool.main:main'],
Expand Down

0 comments on commit 2947de5

Please sign in to comment.