Skip to content

Commit

Permalink
- releasing version 0.2.0
Browse files Browse the repository at this point in the history
- supports TTL
  • Loading branch information
julfikar committed May 21, 2023
1 parent 67c942f commit 3619ddc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "flql"
version = "0.1.9"
version = "0.2.0"
edition = "2021"
authors = ["Mohammad Julfikar <julfikar@eztech.com.my>", "Mohammad Julfikar <md.julfikar.mahmud@gmail.com>"]
categories = ["parser-implementations"]
Expand Down
2 changes: 1 addition & 1 deletion flql.pest
Expand Up @@ -57,7 +57,7 @@ view = @{quots}
clip = @{quots}
document = @{object}
condition = @{ "'" ~ ( "''" | (!"'" ~ ANY) )* ~ "'" }
ttl_period = @{ASCII_NONZERO_DIGIT}
ttl_period = @{ASCII_NONZERO_DIGIT ~ ASCII_DIGIT*}

quots = @{ "'" ~ ( "''" | (!"'" ~ ANY) )* ~ "'" }
object = {
Expand Down

0 comments on commit 3619ddc

Please sign in to comment.