Skip to content

Commit

Permalink
chore: replace uses of reify, upgrade some libs
Browse files Browse the repository at this point in the history
  • Loading branch information
k13gomez committed Oct 2, 2024
1 parent 714ba35 commit debd20f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
This is a history of changes to k13labs/futurama

# 1.0.4
* replace uses of Reify with JavaFunction and JavaBiConsumer types
* upgrade clojure version to 1.11.4

# 1.0.3
* upgrade clojure version to 1.11.2

Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.2"}
:deps {org.clojure/clojure {:mvn/version "1.11.4"}
org.clojure/core.async {:mvn/version "1.6.681"}
manifold/manifold {:mvn/version "0.4.1"}}
manifold/manifold {:mvn/version "0.4.3"}}

;for more examples of aliases see: https://github.com/seancorfield/dot-clojure
:aliases
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<groupId>com.github.k13labs</groupId>
<artifactId>futurama</artifactId>
<name>futurama</name>
<version>1.0.3</version>
<version>1.0.4</version>
<scm>
<tag>1.0.3</tag>
<tag>1.0.4</tag>
<url>https://github.com/k13labs/futurama</url>
<connection>scm:git:git://github.com/k13labs/futurama.git</connection>
<developerConnection>scm:git:ssh://git@github.com/k13labs/futurama.git</developerConnection>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.11.2</version>
<version>1.11.4</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>manifold</groupId>
<artifactId>manifold</artifactId>
<version>0.4.1</version>
<version>0.4.3</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion src/futurama/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

(deftype JavaFunction [f]
Function
(apply [this a]
(apply [_ a]
(f a)))

(deftype JavaBiConsumer [f]
Expand Down

0 comments on commit debd20f

Please sign in to comment.