File tree Expand file tree Collapse file tree 7 files changed +37
-10
lines changed Expand file tree Collapse file tree 7 files changed +37
-10
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,17 @@ jobs:
1616 java : [ '8', '11', '16' ]
1717 steps :
1818 - uses : actions/checkout@v2
19+
1920 - name : Setup Java
20- uses : actions/setup-java@v2.2 .0
21+ uses : actions/setup-java@v2.3 .0
2122 with :
2223 distribution : ' adopt'
2324 java-version : ${{ matrix.java }}
25+
2426 - name : Setup Clojure
2527 uses : DeLaGuardo/setup-clojure@master
2628 with :
2729 tools-deps : ' latest'
30+
2831 - name : Run Tests
2932 run : clojure -M:test -m kaocha.runner
Original file line number Diff line number Diff line change 11# Change Log
22
3+ All notable changes to this project will be documented in this file
4+ and is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
5+
6+ This project follows the version scheme MAJOR.MINOR.COMMITS where
7+ MAJOR and MINOR provide some relative indication of the size of the
8+ change, but do not follow semantic versioning. In general, all changes
9+ endeavour to be non-breaking (by moving to new names rather than by
10+ breaking existing names). COMMITS is an ever-increasing counter of
11+ commits since the beginning of this repository.
12+
13+ ## [ Unreleased]
14+
15+ ### Changed
16+ ### Added
17+ ### Removed
18+
19+ ## [ 5.0.152]
20+
21+ - Update Sentry Java SDK to 5.1.2
22+
323## [ 5.0.151]
424
525- Update Sentry Java SDK to 5.1.1
117137 compatible with Sentry 10.0.1 and below. If you wish to use those
118138 versions, please continue to use sentry-clj 1.7.30.
119139
120- [ Unreleased ] : https://github.com/getsentry/sentry-clj/compare/5.0.151...HEAD
140+ [ Unreleased ] : https://github.com/getsentry/sentry-clj/compare/5.0.152...HEAD
141+ [ 5.0.152 ] : https://github.com/getsentry/sentry-clj/compare/5.0.151...5.0.152
121142[ 5.0.151 ] : https://github.com/getsentry/sentry-clj/compare/5.0.147...5.0.151
122143[ 5.0.149 ] : https://github.com/getsentry/sentry-clj/compare/5.0.147...5.0.149
123144[ 5.0.147 ] : https://github.com/getsentry/sentry-clj/compare/4.3.146...5.0.147
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ clojure -X:install
Original file line number Diff line number Diff line change 11{:paths [" src" ]
22
3- :deps {io.sentry/sentry {:mvn/version " 5.1.1 " }
3+ :deps {io.sentry/sentry {:mvn/version " 5.1.2 " }
44 org.clojure/clojure {:mvn/version " 1.10.3" }
55 ring/ring-core {:mvn/version " 1.9.4" }}
66
Original file line number Diff line number Diff line change 11{:paths [" src" " resources" ]
22
33 :deps {ch.qos.logback/logback-classic {:mvn/version " 1.2.5" }
4- io.sentry/sentry {:mvn/version " 5.1.1 " }
5- io.sentry/sentry-clj {:mvn/version " 5.0.151 " }
4+ io.sentry/sentry {:mvn/version " 5.1.2 " }
5+ io.sentry/sentry-clj {:mvn/version " 5.0.152 " }
66 org.clojure/clojure {:mvn/version " 1.10.3" }
77 org.clojure/tools.cli {:mvn/version " 1.0.206" }
88 org.clojure/tools.logging {:mvn/version " 1.1.0" }
Original file line number Diff line number Diff line change 11{:paths [" src" " resources" ]
22
33 :deps {ch.qos.logback/logback-classic {:mvn/version " 1.2.5" }
4- io.sentry/sentry {:mvn/version " 5.1.1 " }
5- io.sentry/sentry-clj {:mvn/version " 5.0.151 " }
4+ io.sentry/sentry {:mvn/version " 5.1.2 " }
5+ io.sentry/sentry-clj {:mvn/version " 5.0.152 " }
66 org.clojure/clojure {:mvn/version " 1.10.3" }
77 org.clojure/tools.cli {:mvn/version " 1.0.206" }
88 org.clojure/tools.logging {:mvn/version " 1.1.0" }
Original file line number Diff line number Diff line change 44 <packaging >jar</packaging >
55 <groupId >io.sentry</groupId >
66 <artifactId >sentry-clj</artifactId >
7- <version >5.0.151 </version >
7+ <version >5.0.152 </version >
88 <name >sentry-clj</name >
99 <description >A very thin wrapper around the official Java library for Sentry.</description >
1010 <url >https://github.com/getsentry/sentry-clj</url >
1818 <url >https://github.com/getsentry/sentry-clj</url >
1919 <connection >scm:git:git://github.com/getsentry/sentry-clj.git</connection >
2020 <
developerConnection >scm:git:ssh://
[email protected] /getsentry/sentry-clj.git</
developerConnection >
21- <tag >5.0.151 </tag >
21+ <tag >5.0.152 </tag >
2222 </scm >
2323 <dependencies >
2424 <dependency >
2929 <dependency >
3030 <groupId >io.sentry</groupId >
3131 <artifactId >sentry</artifactId >
32- <version >5.1.1 </version >
32+ <version >5.1.2 </version >
3333 </dependency >
3434 <dependency >
3535 <groupId >ring</groupId >
You can’t perform that action at this time.
0 commit comments