Skip to content

Commit

Permalink
Bump libraries 2024-12-31 (#181)
Browse files Browse the repository at this point in the history
* Bump libraries

* Update CHANGELOG.md

* Fix typo

* Update CHANGELOG.md

Co-authored-by: Marco Biscaro <[email protected]>

* Bump library version in project.clj

* Setup leiningen on CI

* Bump lein

* Setup leiningen on release workflow

---------

Co-authored-by: Marco Biscaro <[email protected]>
  • Loading branch information
acamargo and marcobiscaro2112 authored Jan 7, 2025
1 parent 8aeec82 commit 4d90746
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
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
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,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 @@ -39,6 +44,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21

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

- name: Install dependencies
run: lein deps

Expand Down
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

0 comments on commit 4d90746

Please sign in to comment.