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

Next release #253

Merged
merged 5 commits into from
Apr 26, 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
7 changes: 7 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
All notable changes to this project will be documented in this file. This change log follows the conventions of http://keepachangelog.com/[keepachangelog.com].

== Unreleased (dev)
// {{{
=== Changed
* Bumped clojure to 1.11.3.
* Bumped tools.deps to 0.19.1428.
* Bumped malli to 0.16.0.
* Bumped build.edn to 0.11.257.
// }}}

== 2.8.1194 (2024-04-12)
// {{{
Expand Down
8 changes: 4 additions & 4 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{:paths ["src"]
:deps
{org.clojure/clojure {:mvn/version "1.11.2"}
{org.clojure/clojure {:mvn/version "1.11.3"}
org.clojure/data.xml {:mvn/version "0.2.0-alpha9"}
org.clojure/data.zip {:mvn/version "1.1.0"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
org.clojure/core.async {:mvn/version "1.6.681"}
org.clojure/tools.deps {:mvn/version "0.19.1417"}
org.clojure/tools.deps {:mvn/version "0.19.1428"}
org.clojure/data.json {:mvn/version "2.5.0"}
clj-commons/clj-yaml {:mvn/version "1.0.27"}
version-clj/version-clj {:mvn/version "2.0.2"}
Expand All @@ -24,7 +24,7 @@
{:extra-paths ["dev"
"test"
"test/resources"]
:extra-deps {metosin/malli {:mvn/version "0.15.0"}
:extra-deps {metosin/malli {:mvn/version "0.16.0"}
lambdaisland/kaocha {:mvn/version "1.88.1376"}
lambdaisland/deep-diff2 {:mvn/version "2.11.216"}}
:jvm-opts ["-Dclojure.core.async.go-checking=true"]}
Expand All @@ -43,7 +43,7 @@
:main-opts ["-m" "cloverage.coverage" "--ns-exclude-regex" "leiningen.antq"]}

:build
{:deps {com.github.liquidz/build.edn {:mvn/version "0.11.241"}}
{:deps {com.github.liquidz/build.edn {:mvn/version "0.11.257"}}
:ns-default build}

;; -X
Expand Down
2 changes: 1 addition & 1 deletion test/resources/integration-testing/green/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(defproject green "n/a"
:description "Please keep me updated - `lein antq` should pass for this project"
:managed-dependencies [[com.stuartsierra/dependency "1.0.0"]]
:dependencies [[org.clojure/clojure "1.11.2"]
:dependencies [[org.clojure/clojure "1.11.3"]
[com.stuartsierra/dependency]]
:plugins [[lein-pprint "1.3.2"]
[com.github.liquidz/antq "RELEASE"]]
Expand Down
Loading