Skip to content

Commit d416f6b

Browse files
committed
Release 0.2.1
1 parent 74e9516 commit d416f6b

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.2.1
4+
5+
- Renamed grammar file to avoid potential conflicts
6+
37
## 0.2.0
48

59
- Added support for cursor functions to be chained (in any order) after db.collection.find():

TODO.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

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

5+
- Add ObjectId() support for find().
6+
- Regex queries:
7+
- Tests for regex by string (already works)
8+
- Support for /regex/ literals
9+
510
## Working Commands
611

712
show dbs

project.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject monglorious "0.2.0"
1+
(defproject monglorious "0.2.1"
22
:author "Dave Bauman"
33
:description "Query MongoDB using strings!"
44
:url "https://github.com/baumandm/monglorious"
@@ -11,7 +11,6 @@
1111
[com.novemberain/monger "3.1.0"]
1212
[org.clojars.frozenlock/commons-lang "3.3.0"]]
1313

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

src/monglorious/parser.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"whitespace = #'\\s+'"))
1414

1515
(def monglorious-parser
16-
(time (insta/parser (clojure.java.io/resource "grammar.ebnf")
16+
(time (insta/parser (clojure.java.io/resource "monglorious-grammar.ebnf")
1717
:string-ci true
1818
:auto-whitespace whitespace)))
1919

0 commit comments

Comments
 (0)