Skip to content

Commit

Permalink
Girouette release v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
green-coder committed Feb 5, 2022
1 parent 1ce8a5a commit f3a98da
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
## Unreleased

## v0.0.7

### Fixed

Thanks to `jamesnvc` for the following fixes:
- (PR #76) Escape octothorpe character in class name.
- (PR #77) Fix `.invisible` class.
- (PR #80) Fix the rule `:max-width`.
- Fix bug in the processor tool when parsing CLJS files containing character literals.

- Fixed and simplified the function `girouette.util/rule-comparator`.

## v0.0.6

### Changed
Expand Down
4 changes: 2 additions & 2 deletions example/reagent-demo/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
:deps {org.clojure/clojurescript {:mvn/version "1.11.4"}
thheller/shadow-cljs {:mvn/version "2.16.12"}
reagent/reagent {:mvn/version "1.1.0"}
girouette/girouette {:mvn/version "0.0.6"}
girouette/girouette {:mvn/version "0.0.7"}
#_#_girouette/girouette {:local/root "../../lib/girouette"}}

:aliases {; clojure -X:girouette-processor
:girouette-processor {:extra-deps {girouette/processor {:mvn/version "0.0.5"}}
:girouette-processor {:extra-deps {girouette/processor {:mvn/version "0.0.7"}}
#_#_:extra-deps {girouette/processor {:local/root "../../lib/processor"}}
:ns-default girouette.processor
:exec-fn process
Expand Down
2 changes: 1 addition & 1 deletion lib/girouette/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
:exec-args {:sync-pom true
:group-id "girouette"
:artifact-id "girouette"
:version "0.0.6"
:version "0.0.7"
:jar "girouette.jar"}}}}
;; Memo for deploying a new release:
;; - Change the version above, then build the jar:
Expand Down
2 changes: 1 addition & 1 deletion lib/girouette/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<packaging>jar</packaging>
<groupId>girouette</groupId>
<artifactId>girouette</artifactId>
<version>0.0.6</version>
<version>0.0.7</version>
<name>girouette</name>
<scm>
<url>https://github.com/green-coder/girouette</url>
Expand Down
4 changes: 2 additions & 2 deletions lib/processor/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
hawk/hawk {:mvn/version "0.2.11"}

garden/garden {:mvn/version "1.3.10"}
girouette/girouette {:mvn/version "0.0.6"}
girouette/girouette {:mvn/version "0.0.7"}
#_#_girouette/girouette {:local/root "../../lib/girouette"}}

:aliases {:test {:extra-paths ["test"]
Expand All @@ -26,7 +26,7 @@
:exec-args {:sync-pom true
:group-id "girouette"
:artifact-id "processor"
:version "0.0.5"
:version "0.0.7"
:jar "processor.jar"}}}}
;; Memo for deploying a new release:
;; - Change the version above, then build the jar:
Expand Down
10 changes: 5 additions & 5 deletions lib/processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<packaging>jar</packaging>
<groupId>girouette</groupId>
<artifactId>processor</artifactId>
<version>0.0.5</version>
<version>0.0.7</version>
<name>processor</name>
<scm>
<url>https://github.com/green-coder/girouette</url>
Expand All @@ -21,22 +21,22 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>tools.analyzer</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojurescript</artifactId>
<version>1.10.879</version>
<version>1.11.4</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>tools.deps.alpha</artifactId>
<version>0.12.1036</version>
<version>0.12.1120</version>
</dependency>
<dependency>
<groupId>girouette</groupId>
<artifactId>girouette</artifactId>
<version>0.0.5</version>
<version>0.0.7</version>
</dependency>
<dependency>
<groupId>hawk</groupId>
Expand Down

0 comments on commit f3a98da

Please sign in to comment.