Skip to content

Commit 309734f

Browse files
authored
Merge pull request #278 from metosin/prepare-0.10.6
Prepare 0.10.6
2 parents 1cecac6 + 2d9f529 commit 309734f

File tree

4 files changed

+33
-22
lines changed

4 files changed

+33
-22
lines changed

.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
matrix:
1414
test-type: [clj, cljs]
1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v3
1717
- name: Cache Clojure dependencies
18-
uses: actions/cache@v1
18+
uses: actions/cache@v3
1919
with:
2020
path: ~/.m2
2121
key: lein-${{ github.job }}-${{ hashFiles('project.clj') }}
@@ -28,9 +28,9 @@ jobs:
2828
coverage:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v1
31+
- uses: actions/checkout@v3
3232
- name: Cache Clojure dependencies
33-
uses: actions/cache@v1
33+
uses: actions/cache@v3
3434
with:
3535
path: ~/.m2
3636
key: lein-${{ github.job }}-${{ hashFiles('project.clj') }}
@@ -40,4 +40,4 @@ jobs:
4040
- name: Run tests with coverage
4141
run: lein cloverage --codecov
4242
- name: Upload coverage to Codecov
43-
uses: codecov/codecov-action@v1
43+
uses: codecov/codecov-action@v3

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
release:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v1
12-
- uses: actions/setup-java@v1
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-java@v3
1313
with:
1414
java-version: "8"
1515
- name: Deploy to Clojars

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.10.6 (2023-08-28)
2+
3+
* Deprecate `spec-tools.openapi/openapi-spec`
4+
* Update Dependencies
5+
6+
```clojure
7+
- :dependencies [[org.clojure/spec.alpha "0.2.187"]]
8+
+ :dependencies [[org.clojure/spec.alpha "0.3.218"]]
9+
```
10+
111
# 0.10.5 (2021-01-22)
212

313
* Support validating values transformed via encode/decode functions. [#241](https://github.com/metosin/spec-tools/issues/241). PR [#248](https://github.com/metosin/spec-tools/pull/248) by [Wanderson Ferreira].

project.clj

+16-15
Original file line numberDiff line numberDiff line change
@@ -16,32 +16,33 @@
1616
:scm {:name "git"
1717
:url "https://github.com/metosin/spec-tools"}
1818

19-
:dependencies [[org.clojure/spec.alpha "0.2.187"]]
19+
:dependencies [[org.clojure/spec.alpha "0.3.218"]]
2020

21-
:profiles {:dev {:plugins [[jonase/eastwood "0.3.11"]
22-
[lein-tach "1.0.0"]
21+
:profiles {:dev {:plugins [[jonase/eastwood "1.4.0"]
22+
[lein-tach "1.1.0"]
2323
[lein-doo "0.1.11"]
2424
[lein-cljsbuild "1.1.8"]
25-
[lein-cloverage "1.1.2"]
26-
[lein-codox "0.10.7"]
25+
[lein-cloverage "1.2.4"]
26+
[lein-codox "0.10.8"]
2727
[lein-pprint "1.3.2"]]
2828
:jvm-opts ^:replace ["-server"]
2929
;:global-vars {*warn-on-reflection* true}
30-
:dependencies [[org.clojure/clojure "1.10.0"]
31-
[org.clojure/clojurescript "1.10.520"]
32-
[criterium "0.4.5"]
33-
[prismatic/schema "1.1.12"]
34-
[org.clojure/test.check "1.0.0"]
35-
[org.clojure/tools.namespace "1.0.0"]
36-
[com.gfredericks/test.chuck "0.2.10"]
30+
:dependencies [[org.clojure/clojure "1.11.1"]
31+
[org.clojure/clojurescript "1.11.60"]
32+
[criterium "0.4.6"]
33+
[prismatic/schema "1.4.1"]
34+
[org.clojure/test.check "1.1.1"]
35+
[org.clojure/tools.namespace "1.4.4"]
36+
[com.gfredericks/test.chuck "0.2.14"]
3737
; com.bhauman/spell-spec library doesn't get any updates, so it has to be copied here
3838
; under spec-tools.spell-spec namespace in order to fix its bugs.
3939
; If the library gets updated with fixes it would be desirable to switch back to it.
4040
;[com.bhauman/spell-spec "0.1.1"]
41-
[expound "0.8.4"]
42-
[metosin/muuntaja "0.6.7"]
41+
[expound "0.9.0"]
42+
[metosin/muuntaja "0.6.8"]
4343
[metosin/ring-swagger "0.26.2"]
44-
[metosin/scjsv "0.6.1"]]}
44+
[metosin/jsonista "0.3.7"]
45+
[metosin/scjsv "0.6.2"]]}
4546
:perf {:jvm-opts ^:replace ["-server"]}}
4647
:aliases {"all" ["with-profile" "dev"]
4748
"perf" ["with-profile" "default,dev,perf"]

0 commit comments

Comments
 (0)