Skip to content

Commit

Permalink
fix README and LEXER.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Karn committed Mar 15, 2022
1 parent 97cbf60 commit d873ad5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2] - 2022-03-14
### Fixed
- Fixed README + leftover docs.

## [0.1.1] - 2022-03-14
### Fixed
- Fixed Cargo.toml for publishing.
Expand All @@ -15,5 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release.

[Unreleased]: https://github.com/rust-playground/ksql/compare/v0.1.0...HEAD
[0.1.2]: https://github.com/rust-playground/ksql/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/rust-playground/ksql/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/rust-playground/ksql/commit/03fa237a7e2fe5f15de609e3da3c87f5dbed8805
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ksql"
description = "A JSON data expression lexer, parser, cli and library"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
6 changes: 1 addition & 5 deletions LEXER.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#### Syntax & Rules

| Token | Example | Syntax Rules |
|----------------|-----------------|----------------------------------------------------|
Expand Down Expand Up @@ -26,8 +27,3 @@
| `StartsWith` | `STARTSWITH ` | Ends with a ` ` blank space. |
| `EndsWith` | `ENDSWITH ` | Ends with a ` ` blank space. |
| `NULL` | `NULL ` | N/A |


TODO: Enhance number parser to accept exponents

TODO: Add `LEN` operator

0 comments on commit d873ad5

Please sign in to comment.