Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bfontaine committed Nov 14, 2019
1 parent 32817c7 commit a22fd49
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Grape Changelog

## 0.2.0 (2019/11/14)

* Add typed expression wildcards

## 0.1.0 (2019/10/27)

Initial release.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ brew install bfontaine/utils/grape

```clojure
;; Lein/Boot
[bfontaine/grape "0.1.0"]
[bfontaine/grape "0.2.0"]

;; Deps
bfontaine/grape {:mvn/version "0.1.0"}
bfontaine/grape {:mvn/version "0.2.0"}
```


Expand All @@ -40,7 +40,7 @@ bfontaine/grape {:mvn/version "0.1.0"}

;; Find all occurrences of `if` with no `else` clause
(g/find-codes my-code (g/pattern "(if $ $)"))
; => ({:match "(if ...)", :meta {...}}, ...)
; => ({:match "(if )", :meta {}}, )
```

Matches are map with a `:match` key that contains a string with the matching
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 bfontaine/grape "0.1.0"
(defproject bfontaine/grape "0.2.0"
:description "Syntax-aware Grep-like for Clojure code"
:url "https://github.com/bfontaine/grape"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
Expand Down

0 comments on commit a22fd49

Please sign in to comment.