Skip to content

Commit

Permalink
Fix missing require & bump version to 0.12.0 (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
camsaul authored Jun 11, 2021
1 parent 3524557 commit 5d06a7b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,7 @@ following summarizes all component implementations that currently ship with Meth

### Debugging

Methodical offers debugging facilities so you can see what's going on under the hood, such as the `trace` utility
added in 0.11.4:
Methodical offers debugging facilities so you can see what's going on under the hood, such as the `trace` utility:

![Trace](assets/tracing.png)

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject methodical "0.11.5-SNAPSHOT"
(defproject methodical "0.12.0"
:url "https://github.com/camsaul/methodical"
:min-lein-version "2.5.0"

Expand Down
3 changes: 3 additions & 0 deletions src/methodical/impl/combo/threaded.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
(ns methodical.impl.combo.threaded
(:refer-clojure :exclude [methods])
(:require [methodical.impl.combo.common :as combo.common]
methodical.interface
[potemkin.types :as p.types]
[pretty.core :refer [PrettyPrintable]])
(:import methodical.interface.MethodCombination))

(comment methodical.interface/keep-me)

(defn reducer-fn
"Reduces a series of before/combined-primary/after methods, threading the resulting values to the next method by
calling the `invoke` function, which is generated by `threaded-invoker`."
Expand Down

0 comments on commit 5d06a7b

Please sign in to comment.