Skip to content

Commit

Permalink
Prepare release 3.2.0 (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamlikeme authored Apr 16, 2023
1 parent 49b0f05 commit 32ab54a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.2.0] - 2023-04-16

### Changed
- (#68, #70) Dropped support for Python 2.7 and 3.6.
- (#66) `importlib.metadata` no longer used to evaluate `rainflow.__version__`.

## [3.1.1] - 2021-12-28

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rainflow"
version = "3.1.1"
version = "3.2.0"
description = "Implementation of ASTM E1049-85 rainflow cycle counting algorithm"
authors = ["Piotr Janiszewski <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/rainflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from collections import deque, defaultdict
import math

__version__ = "3.1.1"
__version__ = "3.2.0"


def _get_round_function(ndigits=None):
Expand Down

0 comments on commit 32ab54a

Please sign in to comment.