Skip to content

Commit 174b1fc

Browse files
committed
1.5.1
1 parent c4c0a1e commit 174b1fc

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ pom.xml.asc
1212
.lein-repl-history
1313
venv
1414
.nrepl-port
15+
.nrepl-history

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ A Clojure interface to Sentry.
44

55
## Usage
66

7+
[](dependency)
78
```clojure
8-
[raven-clj "1.5.0"]
9+
[raven-clj "1.5.1"] ;; latest release
910
```
11+
[](/dependency)
1012

1113
### `capture`
1214

@@ -90,6 +92,8 @@ raven-clj also includes a Ring middleware that sends the Http and Stacktrace int
9092

9193
## Changes
9294

95+
- **1.5.1**
96+
- Prevent indexOutOfBounds exception when determining context line ([#25](https://github.com/sethtrain/raven-clj/pull/25))
9397
- **1.5.0**
9498
- fix how request method is extracted from ring requests ([#22](https://github.com/sethtrain/raven-clj/pull/22)
9599
- send stringified ex-data ([#21](https://github.com/sethtrain/raven-clj/pull/22))

boot.properties

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
#Thu May 12 15:18:06 CEST 2016
33
BOOT_CLOJURE_NAME=org.clojure/clojure
44
BOOT_CLOJURE_VERSION=1.8.0
5-
BOOT_VERSION=2.5.5
6-
BOOT_EMIT_TARGET=no
5+
BOOT_VERSION=2.7.2

build.boot

+10-7
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,23 @@
55
[clj-http "3.0.1"]
66
[prone "1.0.1"]
77

8-
[adzerk/boot-test "1.1.1" :scope "test"]])
8+
[adzerk/bootlaces "0.1.13" :scope "test"]
9+
[adzerk/boot-test "1.1.1" :scope "test"]])
10+
11+
(require '[adzerk.boot-test :refer [test]]
12+
'[adzerk.bootlaces :refer [bootlaces! build-jar push-release]])
13+
14+
(def +version+ "1.5.1")
15+
16+
(bootlaces! +version+ :dont-modify-paths? true)
917

1018
(task-options!
1119
pom {:project 'raven-clj
12-
:version "1.5.0"
20+
:version +version+
1321
:description "Sentry clojure client"
1422
:url "http://github.com/sethtrain/raven-clj"
1523
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}})
1624

17-
(require '[adzerk.boot-test :refer [test]])
18-
19-
(deftask build []
20-
(comp (pom) (jar)))
21-
2225
(deftask test! []
2326
(merge-env! :source-paths #{"test"})
2427
(test))

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject raven-clj "1.5.0"
1+
(defproject raven-clj "1.5.1"
22
:description "Sentry clojure client"
33
:url "http://github.com/sethtrain/raven-clj"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)