Skip to content

Commit 9f1a4ad

Browse files
2.11.0
1 parent cdc4602 commit 9f1a4ad

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

ChangeLog.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
1-
## Changes between Pantomime 2.10.0 and 2.11.0 (unreleased)
1+
## Changes between Pantomime 2.11.0 and 2.12.0 (unreleased)
22

33
No changes yet.
44

55

6+
## Changes between Pantomime 2.10.0 and 2.11.0 (March 6th, 2019)
7+
8+
### Apache Tika 1.19.1
9+
10+
Apache Tika dependency has been upgraded to [1.19.1](https://tika.apache.org/1.19.1/index.html).
11+
12+
GitHub issue: [#29](https://github.com/michaelklishin/pantomime/issues/29)
13+
14+
### Clojure 1.10
15+
16+
The library now depends on Clojure 1.10.
17+
618
## Changes between Pantomime 2.9.0 and 2.10.0 (Jan 19th, 2018)
719

820
### Apache Tika 1.17
@@ -26,12 +38,10 @@ Several functions now accept `TikaConfig` instances.
2638

2739
Contributed by ejshoen.
2840

29-
30-
## Clojure 1.8
41+
### Clojure 1.8
3142

3243
The library now depends on Clojure 1.8.
3344

34-
3545
### Namespaced Keys
3646

3747
Extraction functions now return namespaced keywords.

project.clj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
(defproject com.novemberain/pantomime "2.11.0-SNAPSHOT"
1+
(defproject com.novemberain/pantomime "2.11.0"
22
:min-lein-version "2.5.1"
33
:description "A minimalistic Clojure interface to Apache Tika"
44
:url "http://github.com/michaelklishin/pantomime"
55
:license { :name "Eclipse Public License" }
66
:source-paths ["src/clojure"]
7-
:dependencies [[org.clojure/clojure "1.9.0"]
7+
:dependencies [[org.clojure/clojure "1.10.0"]
88
[org.apache.tika/tika-parsers "1.19.1"]
99
[org.apache.commons/commons-compress "1.18"]]
1010
:profiles {:dev {:resource-paths ["test/resources"]
1111
:dependencies [[clj-http "3.9.1"]]}
12-
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
13-
:master {:dependencies [[org.clojure/clojure "1.10.0-master-SNAPSHOT"]]}
12+
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
13+
:master {:dependencies [[org.clojure/clojure "1.11.0-master-SNAPSHOT"]]}
1414
}
1515
:repositories {"sonatype" {:url "https://oss.sonatype.org/content/repositories/releases"
1616
:snapshots false

0 commit comments

Comments
 (0)