Skip to content

Commit

Permalink
Update deps, add a note about camel-snake-kebab
Browse files Browse the repository at this point in the history
  • Loading branch information
Deraen committed Aug 30, 2014
1 parent 7c38cde commit b45d3d3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.5.0 (x.8.2014)

- updated dependencies:

```clojure
[ring/ring-core "1.3.1"]
[potemkin "0.3.8"]
[camel-snake-kebab "0.2.4"]
```
- Camel\_SNAKE-kebab 0.2.0 renamed the ns camel-snake-kebab to camel-snake-kebab.core

## 0.4.1 (15.7.2014)

- updated dependencies:
Expand All @@ -17,4 +28,4 @@

## 0.3.0 (13.2.2014)

- Initial public version
- Initial public version
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
(defproject metosin/ring-http-response "0.4.1"
(defproject metosin/ring-http-response "0.5.0-SNAPSHOT"
:description "Real HTTP Statuses for Ring"
:url "https://github.com/metosin/ring-http-response"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:dependencies [[org.clojure/clojure "1.6.0"]
[ring/ring-core "1.3.0"]
[ring/ring-core "1.3.1"]
[slingshot "0.10.3"]
[potemkin "0.3.4"]
[camel-snake-kebab "0.1.5"]]
[potemkin "0.3.8"]
[camel-snake-kebab "0.2.4"]]
:profiles {:dev {:plugins [[lein-clojars "0.9.1"]
[lein-midje "3.1.3"]]
:dependencies [[midje "1.6.3"]]}})
2 changes: 1 addition & 1 deletion src/ring/util/http_response.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(ns ring.util.http-response
(:require [camel-snake-kebab :refer [->kebab-case]]
(:require [camel-snake-kebab.core :refer [->kebab-case]]
[potemkin :refer [import-vars]]
[slingshot.slingshot :refer [throw+]]
ring.util.response))
Expand Down

0 comments on commit b45d3d3

Please sign in to comment.