Skip to content

Commit

Permalink
version 1-alpha3: API cleanup, adapting to Kindly version 4-alpha3
Browse files Browse the repository at this point in the history
  • Loading branch information
daslu committed Sep 8, 2023
1 parent f6283a5 commit 5106e24
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## [1-alpha2]
## [1-alpha3] - 2023-09-08
- API cleanup
- adapting to Kindly version 4-alpha3

## [1-alpha2] - 2023-08-31
- fixed the predicate for datasets (typo)
- updated deps

## [1-alpha1]
## [1-alpha1] - 2023-08-31
- initial draft extracted out of the kindly v4 draft
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[org.corfield.build :as bb]))

(def lib 'org.scicloj/kindly-advice)
(def version "1-alpha2")
(def version "1-alpha3")
#_ ; alternatively, use MAJOR.MINOR.COMMITS:
(def version (format "1.0.%s" (b/git-count-revs nil)))

Expand Down
6 changes: 3 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.scicloj/kindly {:mvn/version "4-alpha2"}}
:aliases {:dev {:extra-deps {org.scicloj/clay {:mvn/version "2-alpha2"}
org.scicloj/kindly {:mvn/version "4-alpha3"}}
:aliases {:dev {:extra-deps {org.scicloj/clay {:mvn/version "2-alpha32"}
scicloj/tablecloth {:mvn/version "7.000-beta-51"}}
:extra-paths ["notebooks"]}
:build {:deps {io.github.seancorfield/build-clj
Expand All @@ -10,4 +10,4 @@
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "48c3c67"}
org.scicloj/clay {:mvn/version "2-alpha31"}}}}}
org.scicloj/clay {:mvn/version "2-alpha32"}}}}}
2 changes: 1 addition & 1 deletion src/scicloj/kindly_advice/v1/advisors.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
type
pr-str
(= "java.awt.image.BufferedImage")))
:kind/buffered-image]
:kind/image]
[(fn [v]
(some-> v
meta
Expand Down
3 changes: 0 additions & 3 deletions src/scicloj/kindly_advice/v1/api.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,3 @@

(defn set-advisors! [advisors]
(reset! *advisors advisors))

(defn set-only-advisor! [advisor]
(set-advisors! [advisor]))

0 comments on commit 5106e24

Please sign in to comment.