Skip to content

Commit d0fb96c

Browse files
Bump version; update changelog
1 parent 637b27d commit d0fb96c

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Changelog:
22
==========
33

4+
v2.1.0:
5+
-------
6+
7+
- Add ``bulb_section()`` to steel sections library, thanks to `@zmpulse <https://github.com/zmpulse>`_
8+
- Add progress bar and pretty output using `rich <https://github.com/Textualize/rich`_
9+
- Fix logic of generating holes in CompoundGeometry using the subtraction method, thanks to `@connorferster <https://github.com/connorferster>`_
10+
- Expand testing suite and documentation, thanks to `@czarified <https://github.com/czarified>`_
11+
- Fix bug with plastic calculation when material properties are specified
12+
- Add warning message for disconnected geometries when trying to calculate warping properties, thanks to `@connorferster <https://github.com/connorferster>`_
13+
- Fix bug with material properties not being assigned when using the ``CompoundGeometry.from_points()`` method, thanks to `@connorferster <https://github.com/connorferster>`_
14+
15+
**Full changelog:** `2.0.3...2.1.0 <https://github.com/robbievanleeuwen/section-properties/compare/2.0.3...2.1.0>`_
16+
417
v2.0.3:
518
-------
619

@@ -22,11 +35,15 @@ v2.0.2:
2235
- Fix bug in super_t_girder_section() which caused type 5 to be returned in all cases
2336
- Require matplotlib >= 3.4 for CenteredNorm
2437

38+
**Full changelog:** `2.0.1...2.0.2 <https://github.com/robbievanleeuwen/section-properties/compare/2.0.1...2.0.2>`_
39+
2540
v2.0.1:
2641
-------
2742

2843
- Fix issue with library module
2944

45+
**Full changelog:** `2.0.0...2.0.1 <https://github.com/robbievanleeuwen/section-properties/compare/2.0.0...2.0.1>`_
46+
3047
v2.0.0:
3148
-------
3249

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Run Tests](https://github.com/robbievanleeuwen/section-properties/actions/workflows/tests.yml/badge.svg)](https://github.com/robbievanleeuwen/section-properties/actions/workflows/tests.yml) [![Lint with Black](https://github.com/robbievanleeuwen/section-properties/actions/workflows/black.yml/badge.svg)](https://github.com/robbievanleeuwen/section-properties/actions/workflows/black.yml) [![Documentation Status](https://readthedocs.org/projects/sectionproperties/badge/?version=latest)](https://sectionproperties.readthedocs.io/en/latest/?badge=latest)
55
[![codecov](https://codecov.io/gh/robbievanleeuwen/section-properties/branch/master/graph/badge.svg?token=QCH9J4SG6P)](https://codecov.io/gh/robbievanleeuwen/section-properties) [![PyPI version](https://badge.fury.io/py/sectionproperties.svg)](https://badge.fury.io/py/sectionproperties) [![Python versions](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9-blue?style=flat&logo=python)](https://badge.fury.io/py/sectionproperties) [![GitHub license](https://img.shields.io/github/license/robbievanleeuwen/section-properties)](https://github.com/robbievanleeuwen/section-properties/blob/master/LICENSE.md)
66

7-
A python package for the analysis of arbitrary cross-sections using the finite element method written by Robbie van Leeuwen. *sectionproperties* can be used to determine section properties to be used in structural design and visualise cross-sectional stresses resulting from combinations of applied forces and bending moments.
7+
A python package for the analysis of arbitrary cross-sections using the finite element method. *sectionproperties* can be used to determine section properties to be used in structural design and visualise cross-sectional stresses resulting from combinations of applied forces and bending moments.
88

99
[Subscribe](http://eepurl.com/dMMUeg) to the mailing list!
1010

@@ -18,7 +18,7 @@ $ pip install sectionproperties
1818

1919
## Documentation:
2020

21-
*sectionproperties* is fully documented including a user walkthrough, examples, background theory and an API guide. The documentation can find at [https://sectionproperties.readthedocs.io/](https://sectionproperties.readthedocs.io/).
21+
*sectionproperties* is fully documented including a user walkthrough, examples, background theory and an API guide. The documentation can found at [https://sectionproperties.readthedocs.io/](https://sectionproperties.readthedocs.io/).
2222

2323
## Current Capabilities:
2424

sectionproperties/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
in structural design and visualise cross-sectional stresses resulting
77
from combinations of applied forces and bending moments.
88
"""
9-
__version__ = "2.0.3"
9+
__version__ = "2.1.0"

0 commit comments

Comments
 (0)