Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 864 Bytes

ChangeLog.md

File metadata and controls

35 lines (21 loc) · 864 Bytes

Changes Between 1.1.0 and 1.2.0

Keywords Support

properties/map->properties now supports keywords keys. properties/properties->map got a new arity that converts keys to keywords:

(require '[clojurewerkz.propertied.properties :as p])

;; converts keys to keywords
(p/properties->map props true)

Clojure 1.6 By Default

The project now depends on org.clojure/clojure version 1.6.0. It is still compatible with Clojure 1.4 and if your project.clj depends on a different version, it will be used, but 1.6 is the default now.

We encourage all users to upgrade to 1.6, it is a drop-in replacement for the majority of projects out there.

Changes Between 1.0.0 and 1.1.0

File Descriptor Leak Fixed

Propertied now correctly releases file descriptors it uses.

Contributed by Alexander Lolis.

1.0.0

Initial release.