Skip to content

Commit

Permalink
3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darkleaf committed Oct 14, 2024
1 parent 5db4a1a commit eda6396
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 3.1.0

+ Internal refactoring: switched from recursive functions to loop/recur to minimize stack traces in exceptions.
+ Missing and circular dependency exceptions now include a stack of keys inside `ex-info` for easier debugging.
+ Improved key generation: better naming of generated keys in `update-key`.
+ Increased test coverage to ensure better reliability.
+ Updated comparison with Integrant.

# 3.0.0

## New features
Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[clojure.string :as str]))

(def lib 'org.clojars.darkleaf/di)
(def version "3.0.0")
(def version "3.1.0")
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(def jar-file (format "target/%s.jar" (name lib)))
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
<version>1.11.1</version>
</dependency>
</dependencies>
<version>3.0.0</version>
<version>3.1.0</version>
</project>

0 comments on commit eda6396

Please sign in to comment.