From 78f0696f127403ad91040484bb0f22487f1814cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D0=B0?= =?UTF-8?q?=D1=80=20=D0=A1=D0=B8=D0=BC=D0=B8=D1=9B?= Date: Mon, 9 Sep 2024 11:31:14 +0100 Subject: [PATCH] Updated Clojure to 1.12.0 Updated Clojure and the test running dependency --- .github/workflows/tests.yaml | 2 +- CHANGELOG.md | 2 ++ deps.edn | 2 +- project.clj | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 132242a..8b2b7fa 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -36,7 +36,7 @@ jobs: - name: Install clojure tools-deps uses: DeLaGuardo/setup-clojure@12.5 with: - tools-deps: 1.11.4.1474 + tools-deps: 1.12.0.1479 - name: Cache Maven packages uses: actions/cache@v4.0.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index e89b7b9..a91db80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## WIP ### Changed +- Updated Clojure to 1.12.0 & GitHub actions to the latest stable + version [#83](https://github.com/dotemacs/pdfboxing/pull/83) - Updated PDFBox to 3.0.3, Clojure to 1.11.4 & GitHub actions to the latest stable version [#82](https://github.com/dotemacs/pdfboxing/pull/82) - Updated Clojure to 1.11.3 [#81](https://github.com/dotemacs/pdfboxing/pull/81) diff --git a/deps.edn b/deps.edn index 704493d..3480598 100644 --- a/deps.edn +++ b/deps.edn @@ -1,4 +1,4 @@ -{:deps {org.clojure/clojure {:mvn/version "1.11.4"}, +{:deps {org.clojure/clojure {:mvn/version "1.12.0"} org.apache.pdfbox/pdfbox {:mvn/version "3.0.3"} org.apache.pdfbox/pdfbox-io {:mvn/version "3.0.3"} org.apache.pdfbox/pdfbox-tools {:mvn/version "3.0.3"}} diff --git a/project.clj b/project.clj index 862462c..c8ccd35 100644 --- a/project.clj +++ b/project.clj @@ -3,7 +3,7 @@ :url "https://github.com/dotemacs/pdfboxing" :license {:name "BSD" :url "https://opensource.org/license/bsd-3-clause/"} - :dependencies [[org.clojure/clojure "1.11.4"] + :dependencies [[org.clojure/clojure "1.12.0"] [org.apache.pdfbox/pdfbox "3.0.3"] [org.apache.pdfbox/pdfbox-io "3.0.3"] [org.apache.pdfbox/pdfbox-tools "3.0.3"]])