-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<a name="v0.15.0"></a> ## v0.15.0 (2020-06-06) #### Bug Fixes * Allow bitoperations to be deserialized ([ed36ed9](ed36ed9)) #### Performance * Strategically inline comment productions ([78e733e](78e733e)) * Shrink the metadata stored in the AST ([842c108](842c108)) * Use T::Generics in AliasData ([4cb575f](4cb575f)) * Shrink the symbol type in the parser ([a8fc8f3](a8fc8f3)) #### Features * Accept multiple lines on incomplete repl input ([4731839](4731839), closes [#830](#830))
- Loading branch information
Showing
22 changed files
with
85 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
keywords = ["script", "scripting", "language"] | ||
build = "build.rs" | ||
|
@@ -26,12 +26,12 @@ name = "gluon" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
gluon_base = { path = "base", version = "0.14.1" } # GLUON | ||
gluon_check = { path = "check", version = "0.14.1" } # GLUON | ||
gluon_parser = { path = "parser", version = "0.14.1" } # GLUON | ||
gluon_codegen = { path = "codegen", version = "0.14.1" } # GLUON | ||
gluon_vm = { path = "vm", version = "0.14.1", default-features = false } # GLUON | ||
gluon_format = { path = "format", version = "0.14.1", default-features = false } # GLUON | ||
gluon_base = { path = "base", version = "0.15.0" } # GLUON | ||
gluon_check = { path = "check", version = "0.15.0" } # GLUON | ||
gluon_parser = { path = "parser", version = "0.15.0" } # GLUON | ||
gluon_codegen = { path = "codegen", version = "0.15.0" } # GLUON | ||
gluon_vm = { path = "vm", version = "0.15.0", default-features = false } # GLUON | ||
gluon_format = { path = "format", version = "0.15.0", default-features = false } # GLUON | ||
|
||
async-trait = "0.1" | ||
log = "0.4" | ||
|
@@ -68,7 +68,7 @@ rand = { version = "0.7", optional = true } | |
rand_xorshift = { version = "0.2", optional = true } | ||
|
||
[build-dependencies] | ||
gluon_base = { path = "base", version = "0.14.1" } # GLUON | ||
gluon_base = { path = "base", version = "0.15.0" } # GLUON | ||
|
||
itertools = "0.8" | ||
little-skeptic = { version = "0.15.0", optional = true } | ||
|
@@ -95,8 +95,8 @@ bincode = "1" | |
|
||
pulldown-cmark = "0.6" | ||
|
||
gluon_completion = { path = "completion", version = "0.14.1" } # GLUON | ||
gluon_codegen = { path = "codegen", version = "0.14.1" } # GLUON | ||
gluon_completion = { path = "completion", version = "0.15.0" } # GLUON | ||
gluon_codegen = { path = "codegen", version = "0.15.0" } # GLUON | ||
|
||
[features] | ||
default = ["regex", "random"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon_base" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -33,7 +33,7 @@ either = "1" | |
vec_map = "0.8" | ||
typed-arena = "1" | ||
|
||
gluon_codegen = { version = "0.14.1", path = "../codegen" } # GLUON | ||
gluon_codegen = { version = "0.15.0", path = "../codegen" } # GLUON | ||
|
||
serde = { version = "1.0.0", features = ["rc"], optional = true } | ||
serde_state = { version = "0.4.0", features = ["rc"], optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon_c-api" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus Westerlind <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -19,7 +19,7 @@ travis-ci = { repository = "gluon-lang/gluon" } | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
gluon = { version = "0.14.1", path = ".." } # GLUON | ||
gluon = { version = "0.15.0", path = ".." } # GLUON | ||
futures = "0.3" | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon_check" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -30,13 +30,13 @@ codespan-reporting = "0.3" | |
|
||
strsim = "0.9.0" | ||
|
||
gluon_base = { path = "../base", version = "0.14.1" } # GLUON | ||
gluon_codegen = { path = "../codegen", version = "0.14.1" } # GLUON | ||
gluon_base = { path = "../base", version = "0.15.0" } # GLUON | ||
gluon_codegen = { path = "../codegen", version = "0.15.0" } # GLUON | ||
|
||
[dev-dependencies] | ||
env_logger = "0.7" | ||
|
||
gluon_parser = { path = "../parser", version = "0.14.1" } # GLUON | ||
gluon_parser = { path = "../parser", version = "0.15.0" } # GLUON | ||
gluon_format = { path = "../format", version = ">=0.9" } | ||
|
||
collect-mac = "0.1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon_codegen" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
|
||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon_completion" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -17,12 +17,12 @@ itertools = "0.8" | |
walkdir = "2" | ||
codespan = "0.3" | ||
|
||
gluon_base = { path = "../base", version = "0.14.1" } # GLUON | ||
gluon_base = { path = "../base", version = "0.15.0" } # GLUON | ||
|
||
[dev-dependencies] | ||
collect-mac = "0.1.0" | ||
env_logger = "0.7" | ||
quick-error = "1" | ||
|
||
gluon_check = { path = "../check", version = "0.14.1" } # GLUON | ||
gluon_parser = { path = "../parser", version = "0.14.1" } # GLUON | ||
gluon_check = { path = "../check", version = "0.15.0" } # GLUON | ||
gluon_parser = { path = "../parser", version = "0.15.0" } # GLUON |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon_doc" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus Westerlind <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -32,8 +32,8 @@ serde = "1.0.0" | |
serde_derive = "1.0.0" | ||
serde_json = "1.0.0" | ||
|
||
gluon = { version = "0.14.1", path = ".." } # GLUON | ||
completion = { package = "gluon_completion", version = "0.14.1", path = "../completion" } # GLUON | ||
gluon = { version = "0.15.0", path = ".." } # GLUON | ||
completion = { package = "gluon_completion", version = "0.15.0", path = "../completion" } # GLUON | ||
|
||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon_format" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -17,7 +17,7 @@ pretty = "0.10" | |
itertools = "0.8" | ||
codespan = "0.3" | ||
|
||
gluon_base = { path = "../base", version = "0.14.1" } # GLUON | ||
gluon_base = { path = "../base", version = "0.15.0" } # GLUON | ||
|
||
[dev-dependencies] | ||
difference = "2" | ||
|
@@ -27,7 +27,7 @@ pretty_assertions = "0.6" | |
tokio = { version = "0.2", features = ["macros", "rt-core"] } | ||
walkdir = "2" | ||
|
||
gluon_base = { path = "../base", version = "0.14.1" } # GLUON | ||
gluon_base = { path = "../base", version = "0.15.0" } # GLUON | ||
gluon = { path = "..", version = ">=0.9" } | ||
|
||
tensile = { version = "0.6", features = ["tokio"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gluon_parser" | ||
version = "0.14.1" # GLUON | ||
version = "0.15.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -24,7 +24,7 @@ quick-error = "1.0.0" | |
lalrpop-util = "0.19" | ||
log = "0.4" | ||
pretty = "0.9" | ||
gluon_base = { path = "../base", version = "0.14.1" } # GLUON | ||
gluon_base = { path = "../base", version = "0.15.0" } # GLUON | ||
ordered-float = "1" | ||
codespan = "0.3" | ||
codespan-reporting = "0.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.