Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
baumandm committed Nov 5, 2016
1 parent 74e9516 commit d416f6b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.2.1

- Renamed grammar file to avoid potential conflicts

## 0.2.0

- Added support for cursor functions to be chained (in any order) after db.collection.find():
Expand Down
5 changes: 5 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

[https://docs.mongodb.com/v3.2/reference/mongo-shell/]()

- Add ObjectId() support for find().
- Regex queries:
- Tests for regex by string (already works)
- Support for /regex/ literals

## Working Commands

show dbs
Expand Down
3 changes: 1 addition & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject monglorious "0.2.0"
(defproject monglorious "0.2.1"
:author "Dave Bauman"
:description "Query MongoDB using strings!"
:url "https://github.com/baumandm/monglorious"
Expand All @@ -11,7 +11,6 @@
[com.novemberain/monger "3.1.0"]
[org.clojars.frozenlock/commons-lang "3.3.0"]]

:main ^:skip-aot monglorious.core
:target-path "target/%s"
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/monglorious/parser.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"whitespace = #'\\s+'"))

(def monglorious-parser
(time (insta/parser (clojure.java.io/resource "grammar.ebnf")
(time (insta/parser (clojure.java.io/resource "monglorious-grammar.ebnf")
:string-ci true
:auto-whitespace whitespace)))

Expand Down

0 comments on commit d416f6b

Please sign in to comment.