Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump libraries 2024-12-31 #181

Merged
merged 8 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
lein: 2.11.2

- name: Print java version
run: java -version

Expand All @@ -44,5 +49,10 @@ jobs:
distribution: 'temurin'
java-version: 21

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
lein: 2.11.2

- name: Lint check
run: lein lint
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [5.19.0]
- Bump dependencies
- org.clojure/clojure from 1.11.4 to 1.12.0
- com.taoensso/timbre from 6.5.0 to 6.6.1

## [5.18.0]
- Bump dependencies
- org.clojure/clojure from 1.11.1 to 1.11.4
Expand Down
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject nubank/state-flow "5.18.0"
(defproject nubank/state-flow "5.19.0"
:description "Integration testing with composable flows"
:url "https://github.com/nubank/state-flow"
:license {:name "MIT"}
Expand All @@ -18,8 +18,8 @@
[lein-nsorg "0.3.0"]
[changelog-check "0.1.0"]]

:dependencies [[org.clojure/clojure "1.11.4"]
[com.taoensso/timbre "6.5.0"]
:dependencies [[org.clojure/clojure "1.12.0"]
[com.taoensso/timbre "6.6.1"]
[funcool/cats "2.4.2"]
[nubank/matcher-combinators "3.9.1"]]

Expand All @@ -36,7 +36,7 @@
[org.clojure/tools.namespace "1.5.0"]
[midje "1.10.10"]
[org.clojure/java.classpath "1.1.0"]
[rewrite-clj "1.1.48"]]}}
[rewrite-clj "1.1.49"]]}}

:aliases {"coverage" ["cloverage" "-s" "coverage"]
"lint" ["do" ["cljfmt" "check"] ["nsorg"]]
Expand Down
Loading