-
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.18.0"></a> ## v0.18.0 (2021-10-03) #### Performance * Avoid recreating the vm for each formatted file ([0335733](0335733)) #### Breaking Changes * Make channels and reference require IO ([c904189](c904189), breaks [#](https://github.com/gluon-lang/gluon/issues/)) #### Features * Make channels and reference require IO ([c904189](c904189), breaks [#](https://github.com/gluon-lang/gluon/issues/)) * Allow specifying type signatures in do bindings ([fac08dc](fac08dc)) * Allow macros to refer to symbols in scope at the expansion site ([1a5489c](1a5489c), closes [#895](#895)) * Allow the http module to be used without a tcp listener ([c45353d](c45353d)) * Format seq expressions without seq ([5c0cec2](5c0cec2)) * Compile block expressions as monadic sequences ([bce5973](bce5973), closes [#884](#884)) * **std:** * add Option assertions to std.test ([28e5053](28e5053)) * add modulo functions to int and float ([92f188a](92f188a)) #### Bug Fixes * Allow the repl to compile concurrently ([2118f4d](2118f4d)) * Don't use the empty span in derive macros ([d05f1ca](d05f1ca)) * Provide the type of imported modules with errors ([d3bfc59](d3bfc59)) * Don't refine already refined skolems ([f39b396](f39b396), closes [#842](#842)) * Recognize raw string literals without any `#` ([4d66fbb](4d66fbb), closes [#885](#885)) * Prevent zero-argument functions from being created in Rust ([e91ea06](e91ea06), closes [#873](#873)) * Give tuple fields a span ([2a1c2c7](2a1c2c7)) * xor_shift_new inconsistent description ([591b64b](591b64b))
- Loading branch information
Showing
22 changed files
with
101 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.17.2" # GLUON | ||
version = "0.18.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.17.2" } # GLUON | ||
gluon_check = { path = "check", version = "0.17.2" } # GLUON | ||
gluon_parser = { path = "parser", version = "0.17.2" } # GLUON | ||
gluon_codegen = { path = "codegen", version = "0.17.2" } # GLUON | ||
gluon_vm = { path = "vm", version = "0.17.2", default-features = false } # GLUON | ||
gluon_format = { path = "format", version = "0.17.2", default-features = false } # GLUON | ||
gluon_base = { path = "base", version = "0.18.0" } # GLUON | ||
gluon_check = { path = "check", version = "0.18.0" } # GLUON | ||
gluon_parser = { path = "parser", version = "0.18.0" } # GLUON | ||
gluon_codegen = { path = "codegen", version = "0.18.0" } # GLUON | ||
gluon_vm = { path = "vm", version = "0.18.0", default-features = false } # GLUON | ||
gluon_format = { path = "format", version = "0.18.0", default-features = false } # GLUON | ||
|
||
async-trait = "0.1.51" | ||
log = "0.4.14" | ||
|
@@ -69,7 +69,7 @@ rand = { version = "0.8.4", optional = true } | |
rand_xorshift = { version = "0.3.0", optional = true } | ||
|
||
[build-dependencies] | ||
gluon_base = { path = "base", version = "0.17.2" } # GLUON | ||
gluon_base = { path = "base", version = "0.18.0" } # GLUON | ||
|
||
itertools = "0.10.1" | ||
little-skeptic = { version = "0.15.2", optional = true } | ||
|
@@ -98,8 +98,8 @@ bincode = "1.3.3" | |
|
||
pulldown-cmark = "0.8.0" | ||
|
||
gluon_completion = { path = "completion", version = "0.17.2" } # GLUON | ||
gluon_codegen = { path = "codegen", version = "0.17.2" } # GLUON | ||
gluon_completion = { path = "completion", version = "0.18.0" } # GLUON | ||
gluon_codegen = { path = "codegen", version = "0.18.0" } # GLUON | ||
|
||
[features] | ||
default = ["async", "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.17.2" # GLUON | ||
version = "0.18.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -33,7 +33,7 @@ either = "1.6.1" | |
vec_map = "0.8.2" | ||
typed-arena = "2.0.1" | ||
|
||
gluon_codegen = { version = "0.17.2", path = "../codegen" } # GLUON | ||
gluon_codegen = { version = "0.18.0", path = "../codegen" } # GLUON | ||
|
||
serde = { version = "1.0.130", features = ["rc"], optional = true } | ||
serde_state = { version = "0.4.8", 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.17.2" # GLUON | ||
version = "0.18.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.17.2", path = ".." } # GLUON | ||
gluon = { version = "0.18.0", path = ".." } # GLUON | ||
futures = "0.3.17" | ||
|
||
[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.17.2" # GLUON | ||
version = "0.18.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -30,14 +30,14 @@ codespan-reporting = "0.11.1" | |
|
||
strsim = "0.10.0" | ||
|
||
gluon_base = { path = "../base", version = "0.17.2" } # GLUON | ||
gluon_codegen = { path = "../codegen", version = "0.17.2" } # GLUON | ||
gluon_base = { path = "../base", version = "0.18.0" } # GLUON | ||
gluon_codegen = { path = "../codegen", version = "0.18.0" } # GLUON | ||
|
||
[dev-dependencies] | ||
env_logger = "0.9.0" | ||
insta = "1.8.0" | ||
|
||
gluon_parser = { path = "../parser", version = "0.17.2" } # GLUON | ||
gluon_parser = { path = "../parser", version = "0.18.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.17.2" # GLUON | ||
version = "0.18.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.17.2" # GLUON | ||
version = "0.18.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -17,13 +17,13 @@ itertools = "0.10.1" | |
walkdir = "2.3.2" | ||
codespan = "0.11.1" | ||
|
||
gluon_base = { path = "../base", version = "0.17.2" } # GLUON | ||
gluon_base = { path = "../base", version = "0.18.0" } # GLUON | ||
|
||
[dev-dependencies] | ||
collect-mac = "0.1.0" | ||
env_logger = "0.9.0" | ||
pretty_assertions = "1.0.0" | ||
quick-error = "2.0.1" | ||
|
||
gluon_check = { path = "../check", version = "0.17.2" } # GLUON | ||
gluon_parser = { path = "../parser", version = "0.17.2" } # GLUON | ||
gluon_check = { path = "../check", version = "0.18.0" } # GLUON | ||
gluon_parser = { path = "../parser", version = "0.18.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.17.2" # GLUON | ||
version = "0.18.0" # GLUON | ||
authors = ["Markus Westerlind <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -32,8 +32,8 @@ serde = "1.0.130" | |
serde_derive = "1.0.130" | ||
serde_json = "1.0.68" | ||
|
||
gluon = { version = "0.17.2", default-features = false, path = ".." } # GLUON | ||
completion = { package = "gluon_completion", version = "0.17.2", path = "../completion" } # GLUON | ||
gluon = { version = "0.18.0", default-features = false, path = ".." } # GLUON | ||
completion = { package = "gluon_completion", version = "0.18.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.17.2" # GLUON | ||
version = "0.18.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -17,7 +17,7 @@ pretty = "0.10.0" | |
itertools = "0.10.1" | ||
codespan = "0.11.1" | ||
|
||
gluon_base = { path = "../base", version = "0.17.2" } # GLUON | ||
gluon_base = { path = "../base", version = "0.18.0" } # GLUON | ||
|
||
[dev-dependencies] | ||
difference = "2.0.0" | ||
|
@@ -28,7 +28,7 @@ pretty_assertions = "1.0.0" | |
tokio = { version = "1.12.0", features = ["macros"] } | ||
walkdir = "2.3.2" | ||
|
||
gluon_base = { path = "../base", version = "0.17.2" } # GLUON | ||
gluon_base = { path = "../base", version = "0.18.0" } # GLUON | ||
gluon = { path = "..", version = ">=0.9" } | ||
|
||
tensile = { version = "0.7", 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.17.2" # GLUON | ||
version = "0.18.0" # GLUON | ||
authors = ["Markus <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -23,7 +23,7 @@ itertools = "0.10.1" | |
quick-error = "2.0.1" | ||
lalrpop-util = "0.19.6" | ||
log = "0.4.14" | ||
gluon_base = { path = "../base", version = "0.17.2" } # GLUON | ||
gluon_base = { path = "../base", version = "0.18.0" } # GLUON | ||
ordered-float = "2.8.0" | ||
codespan = "0.11.1" | ||
codespan-reporting = "0.11.1" | ||
|
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.