Skip to content

Commit 442551c

Browse files
committed
Bump to v2.1.0
1 parent 1e7f006 commit 442551c

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Change Log
22

3-
## [2.0.0] - TBD
3+
## [2.1.0] - 2022-02-21
4+
### Changed
5+
- Update dependencies and resolve JODConverter breaking changes, including
6+
changes which mitigate some vulnerabilities in commons-compress and
7+
commons-io. See [#13](https://github.com/matthewdowney/excel-clj/pull/13).
8+
9+
10+
## [2.0.1] - 2021-02-22
11+
12+
### Changed
13+
- Updated dependency versions for taoensso/encore and taoensso/tufte
14+
### Added
15+
- Support for `LocalDate` and `LocalDateTime` (see
16+
[#9](https://github.com/matthewdowney/excel-clj/pull/9)).
17+
18+
## [2.0.0] - 2020-10-04
419
### Changed
520
- Now uses the POI streaming writer by default (~10x performance gain on
621
sheets > 100k rows)

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ boilerplate-free common sense styling.
88

99
Lein:
1010
```
11-
[org.clojars.mjdowney/excel-clj "2.0.1"]
11+
[org.clojars.mjdowney/excel-clj "2.1.0"]
1212
```
1313

1414
> Note: Ongoing v1.x support can be found on the
@@ -276,4 +276,3 @@ These tests can be run with:
276276
Run all tests with the following command:
277277

278278
`$ lein test :all`
279-

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject org.clojars.mjdowney/excel-clj "2.0.1"
1+
(defproject org.clojars.mjdowney/excel-clj "2.1.0"
22
:description "Generate Excel documents & PDFs from Clojure data."
33
:url "https://github.com/matthewdowney/excel-clj"
44
:license {:name "Eclipse Public License"

test/excel_clj/poi_test.clj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
:success)
1212
"Example function writes successfully."))
1313

14+
1415
(deftest performance-test
1516
(testing "Performance is reasonable"
1617
(println "Starting performance test -- writing to a temp file...")

0 commit comments

Comments
 (0)