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

Updated Clojure from 1.11.3 to 1.11.4 #82

Merged
merged 4 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
uses: actions/checkout@v4

- name: Prepare java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.2.2
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}

- name: Install clojure tools-deps
uses: DeLaGuardo/setup-clojure@12.5
with:
tools-deps: 1.11.2.1446
tools-deps: 1.11.4.1474

- name: Cache Maven packages
uses: actions/cache@v4.0.2
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## WIP

### Changed
- 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)
- Update cognitect/test-runner to the latest release

Expand Down
8 changes: 4 additions & 4 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{:deps {org.clojure/clojure {:mvn/version "1.11.3"},
org.apache.pdfbox/pdfbox {:mvn/version "3.0.2"}
org.apache.pdfbox/pdfbox-io {:mvn/version "3.0.2"}
org.apache.pdfbox/pdfbox-tools {:mvn/version "3.0.2"}}
{:deps {org.clojure/clojure {:mvn/version "1.11.4"},
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"}}
:aliases {:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "RELEASE"}}}
:runner {:extra-deps {com.cognitect/test-runner
Expand Down
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"]
[org.apache.pdfbox/pdfbox "3.0.2"]
[org.apache.pdfbox/pdfbox-io "3.0.2"]
[org.apache.pdfbox/pdfbox-tools "3.0.2"]])
:dependencies [[org.clojure/clojure "1.11.4"]
[org.apache.pdfbox/pdfbox "3.0.3"]
[org.apache.pdfbox/pdfbox-io "3.0.3"]
[org.apache.pdfbox/pdfbox-tools "3.0.3"]])
Loading