Skip to content

Commit 1f94466

Browse files
committed
Merge branch 'develop' for v2.0.0
2 parents 2e0e62b + c46c2bf commit 1f94466

20 files changed

+1666
-1176
lines changed

.github/workflows/clojure.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Clojure CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Install dependencies
17+
run: lein deps
18+
- name: Run tests
19+
run: lein test

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
## [2.0.0] - TBD
4+
### Changed
5+
- Now uses the POI streaming writer by default (~10x performance gain on
6+
sheets > 100k rows)
7+
- Separated out writer abstractions in [poi.clj](src/excel_clj/poi.clj) to
8+
allow using a lower-level POI interface
9+
- Simplified & rewrote [tree.clj](src/excel_clj/tree.clj)
10+
- Better wrapping for styling and dimension data in
11+
[cell.clj](src/excel_clj/cell.clj)
12+
13+
### Added
14+
- Support for merging workbooks, so you can have a template which uses formulas
15+
which act on data from some named sheet, and then fill in that named sheet.
16+
- New top-level helpers for working with grid (`[[cell]]`) data structures
17+
- Vertical as well as horizontal merged cells
18+
- New constructors to build grids from tables and trees (`table-grid` and
19+
`tree-grid`), which supplant the deprecated constructors from v1.x (`tree`
20+
and `table`)
21+
322
## [1.3.3] - 2020-07-11
423
### Fixed
524
- Bug where columns would only auto resize up until 'J'

0 commit comments

Comments
 (0)