Skip to content

Commit ed0542b

Browse files
Bump version
1 parent 3cfe332 commit ed0542b

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

concreteproperties/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
A python package to calculate the section properties of arbitrary reinforced concrete
33
sections.
44
"""
5-
__version__ = "0.2.3"
5+
__version__ = "0.3.0"

concreteproperties/pre.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def add_bar(
358358
x: float,
359359
y: float,
360360
n: int = 4,
361-
) -> Union[CompoundGeometry]: # type: ignore
361+
) -> CompoundGeometry:
362362
"""Adds a reinforcing bar to a *sectionproperties* geometry.
363363
364364
Bars are discretised by four points by default.
@@ -391,7 +391,7 @@ def add_bar_rectangular_array(
391391
anchor: Tuple[float, float] = (0, 0),
392392
exterior_only: bool = False,
393393
n: int = 4,
394-
) -> Union[CompoundGeometry]: # type: ignore
394+
) -> CompoundGeometry:
395395
"""Adds a rectangular array of reinforcing bars to a *sectionproperties* geometry.
396396
397397
Bars are discretised by four points by default.
@@ -440,7 +440,7 @@ def add_bar_circular_array(
440440
theta_0: float = 0,
441441
ctr: Tuple[float, float] = (0, 0),
442442
n: int = 4,
443-
) -> Union[CompoundGeometry]: # type: ignore
443+
) -> CompoundGeometry:
444444
"""Adds a circular array of reinforcing bars to a *sectionproperties* geometry.
445445
446446
Bars are discretised by four points by default.

docs/source/_static/switcher.json

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "latest",
44
"url": "https://robbievanleeuwen.github.io/concrete-properties/"
55
},
6+
{
7+
"version": "0.3.0",
8+
"url": "https://robbievanleeuwen.github.io/concrete-properties/0.3.0"
9+
},
610
{
711
"version": "0.2.3",
812
"url": "https://robbievanleeuwen.github.io/concrete-properties/0.2.3"

todo.md

-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
# POST-RELEASE ITEMS
2-
- [ ] Speed up
3-
- [ ] Profiling
4-
- [ ] Clean up all the na_local, points_na etc. etc.
5-
- [ ] Double calculations etc.?
6-
- [ ] General refactoring
72
- [ ] Add prestressing
8-
- [x] Docs version control
9-
- [x] Start to add design codes
103
- [ ] More tests!
114

125
# Version Instructions

0 commit comments

Comments
 (0)