Skip to content

Commit

Permalink
Merge pull request #17 from frozar/header-fix
Browse files Browse the repository at this point in the history
Complain with the ClojureScript file-analyze function.
  • Loading branch information
frozar committed Apr 28, 2020
2 parents cc98dfa + 242883f commit 6756d75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased

## 0.2.3 - 2020-04-28
### Fixed
- Fix the header required package: ":refer" + ":rename"

## 0.2.2 - 2020-04-28
### Changed
- Avoid to use the ":default" keyword in required package: allow cljdoc to work.
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 frozar/roughcljs "0.2.2"
(defproject frozar/roughcljs "0.2.3"
:description "Clojurescript wrapper around roughjs library"
:url "https://github.com/frozar/roughcljs"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/main/roughcljs/core.cljs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(ns roughcljs.core
(:require ["roughjs/bin/rough" :rename {default rough}]
(:require ["roughjs/bin/rough" :refer [default] :rename {default rough}]
[roughcljs.utils :as utils]
[hickory.core :as hickory]
)
Expand Down

0 comments on commit 6756d75

Please sign in to comment.