Skip to content

Commit

Permalink
Update Sentry Java SDK to 6.4.0.
Browse files Browse the repository at this point in the history
-=david=-
  • Loading branch information
dharrigan committed Aug 19, 2022
1 parent 15dee99 commit 530c4ac
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ endeavour to be non-breaking (by moving to new names rather than by
breaking existing names). COMMITS is an ever-increasing counter of
commits since the beginning of this repository.

## [6.4.182]

- Update Sentry Java SDK to 6.4.0.

## [6.3.181]

- Update Sentry Java SDK to 6.3.1.
Expand Down Expand Up @@ -289,7 +293,8 @@ commits since the beginning of this repository.
compatible with Sentry 10.0.1 and below. If you wish to use those
versions, please continue to use sentry-clj 1.7.30.

[Unreleased]: https://github.com/getsentry/sentry-clj/compare/6.3.181...HEAD
[Unreleased]: https://github.com/getsentry/sentry-clj/compare/6.4.182...HEAD
[6.4.182]: https://github.com/getsentry/sentry-clj/compare/6.3.181...6.4.182
[6.3.181]: https://github.com/getsentry/sentry-clj/compare/5.7.180...6.3.181
[5.7.180]: https://github.com/getsentry/sentry-clj/compare/5.7.178...5.7.180
[5.7.178]: https://github.com/getsentry/sentry-clj/compare/5.7.177...5.7.178
Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
;;
;;
;;
io.sentry/sentry {:mvn/version "6.3.1"}
io.sentry/sentry {:mvn/version "6.4.0"}
ring/ring-core {:mvn/version "1.9.5"}}

:aliases {:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.8.3"
Expand All @@ -19,7 +19,7 @@
orchestra/orchestra {:mvn/version "2021.01.01-1"}
org.clojure/test.check {:mvn/version "1.1.1"}}}

:antq {:replace-deps {com.github.liquidz/antq {:mvn/version "1.9.874"}
:antq {:replace-deps {com.github.liquidz/antq {:mvn/version "2.0.889"}
org.slf4j/slf4j-nop {:mvn/version "1.7.36"}}
:exec-fn antq.tool/outdated
:exec-args {:skip ["pom"]
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;;
;;
ch.qos.logback/logback-classic {:mvn/version "1.2.11"}
io.sentry/sentry {:mvn/version "6.3.1"}
io.sentry/sentry {:mvn/version "6.4.0"}
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
org.clojure/tools.cli {:mvn/version "1.0.206"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
Expand Down
2 changes: 1 addition & 1 deletion examples/ring_with_tracing/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
ch.qos.logback/logback-classic {:mvn/version "1.2.11"}
integrant/integrant {:mvn/version "0.8.0"}
integrant/repl {:mvn/version "0.3.2"}
io.sentry/sentry {:mvn/version "6.3.1"}
io.sentry/sentry {:mvn/version "6.4.0"}
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
org.clojure/tools.cli {:mvn/version "1.0.206"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
Expand Down
2 changes: 1 addition & 1 deletion examples/uncaught/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;;
;;
ch.qos.logback/logback-classic {:mvn/version "1.2.11"}
io.sentry/sentry {:mvn/version "6.3.1"}
io.sentry/sentry {:mvn/version "6.4.0"}
io.sentry/sentry-clj {:local/root "../../../sentry-clj"}
org.clojure/tools.cli {:mvn/version "1.0.206"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[clojure.tools.build.api :as b]
[org.corfield.build :as bb]))

(def ^:private version (format "6.3.%s" (b/git-count-revs nil)))
(def ^:private version (format "6.4.%s" (b/git-count-revs nil)))
(def ^:private library 'io.sentry/sentry-clj)

(defn run-tests
Expand Down

0 comments on commit 530c4ac

Please sign in to comment.