Skip to content

Commit f4f161a

Browse files
committed
- Updated version to 3.0.0
- Updated changelog
1 parent 006d943 commit f4f161a

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
#### 3.0.0
2+
* **Removed Python 2.7 support**
3+
* **Added Python 3.8 support**
4+
* Renamed package name to `styleframe` (all lowercase) in accordance of PEP8
5+
* Added `.style` accessor. This allows for easy selection/indexing based on style, for example:
6+
`sf.loc[sf['col_name'].style.bg_color == utils.colors.yellow]`
7+
8+
or
9+
10+
`sf.loc[~sf['col_name'].style.bold]`
11+
12+
* Added `default_grid` to `utils.borders` to allow usage of the default spreadsheet grid
13+
* Added `read_excel_as_template` method
14+
* Fixed a bug that prevented saving if `read_excel` was used with `use_openpxl_style=True`, see github issue #67
15+
* Allowing usage of pathlib.Path in `to_excel`, see github issue #69
16+
117
#### 2.0.5
218
* `style_alternate_rows` can accept all arguments that `apply_style_by_indexes` accepts as kwargs.
319
* Added `cols_to_style` argument to `apply_headers_style`

styleframe/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_all_versions():
1717
return _versions_
1818

1919

20-
_version_ = '2.0.5'
20+
_version_ = '3.0.0'
2121
_python_version_ = get_python_version()
2222
_pandas_version_ = get_pandas_version()
2323
_openpyxl_version_ = get_openpyxl_version()

0 commit comments

Comments
 (0)