Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.5.0-beta.1 #179

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ Code contributions to MistQL should roughly follow standard open source workflow

### MistQL standard

No MistQL standard yet exists, but we're aiming for the `0.5.0` release of `mistql` as a standardizable language. After the `0.5.0` release, we will create a language specification, separate from any implementation.
No MistQL standard yet exists, but we're aiming for the `1.0.0` release of `mistql` as a standardizable language. After the `1.0.0` release, we will create a language specification, separate from any implementation.

In the meantime, we're actually pretty close.

We have a [Lark grammar](https://github.com/evinism/mistql/blob/main/py/mistql/grammar.lark)
which defines the language's syntax. This is likely the final grammar that will be formalized
into ABNF, although it is possible that we may need to fix minor issues before `0.5.0`. I
into ABNF, although it is possible that we may need to fix minor issues before `1.0.0`. I
expect this to barely change, if at all.

Additionally, our language-independent test suite is rather extensive and forms the de-facto
Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mistql",
"version": "0.4.11",
"version": "0.5.0-beta.1",
"description": "JS implementation of miniature query language",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion meta.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.4.11"
"version": "0.5.0-beta.1"
}
2 changes: 1 addition & 1 deletion py/mistql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.11"
__version__ = "0.5.0-beta.1"

from .query import query # noqa: F401
from .instance import MistQLInstance # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mistql"
version = "0.4.11"
version = "0.5.0-beta.1"
description = "Python implementation of MistQL query language"
authors = ["Evin Sellin <[email protected]>"]

Expand Down