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

fix(check): Subsume implicit functions with forall correctly #688

Merged
merged 4 commits into from
Feb 13, 2019
Merged
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="v0.11.1"></a>
### v0.11.1 (2019-02-13)


#### Bug Fixes

* Don't build release artifacts with full debug info ([fe935835](https://github.com/gluon-lang/gluon/commit/fe9358358a30d06103e6ca51d0af41a1bdff7c60))
* **check:** Subsume implicit functions with forall correctly ([6de5c256](https://github.com/gluon-lang/gluon/commit/6de5c256ecfa0a82ddea0f50d13e5441aefb722c))



<a name="v0.11.0"></a>
## v0.11.0 (2019-02-11)

Expand Down
86 changes: 43 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 10 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon"
version = "0.11.0" # GLUON
version = "0.11.1" # GLUON
authors = ["Markus <[email protected]>"]
build = "build.rs"
edition = "2018"
Expand All @@ -22,12 +22,12 @@ name = "gluon"
path = "src/lib.rs"

[dependencies]
gluon_base = { path = "base", version = "0.11.0" } # GLUON
gluon_check = { path = "check", version = "0.11.0" } # GLUON
gluon_parser = { path = "parser", version = "0.11.0" } # GLUON
gluon_codegen = { path = "codegen", version = "0.11.0" } # GLUON
gluon_vm = { path = "vm", version = "0.11.0", default-features = false } # GLUON
gluon_format = { path = "format", version = "0.11.0", default-features = false } # GLUON
gluon_base = { path = "base", version = "0.11.1" } # GLUON
gluon_check = { path = "check", version = "0.11.1" } # GLUON
gluon_parser = { path = "parser", version = "0.11.1" } # GLUON
gluon_codegen = { path = "codegen", version = "0.11.1" } # GLUON
gluon_vm = { path = "vm", version = "0.11.1", default-features = false } # GLUON
gluon_format = { path = "format", version = "0.11.1", default-features = false } # GLUON

log = "0.4"
quick-error = "1.0.0"
Expand Down Expand Up @@ -59,7 +59,7 @@ rand = { version = "0.6", optional = true }
rand_xorshift = { version = "0.1", optional = true }

[build-dependencies]
gluon_base = { path = "base", version = "0.11.0" } # GLUON
gluon_base = { path = "base", version = "0.11.1" } # GLUON

itertools = "0.8"
little-skeptic = { version = "0.15.0", optional = true }
Expand Down Expand Up @@ -87,8 +87,8 @@ bincode = "1"

pulldown-cmark = "0.2"

gluon_completion = { path = "completion", version = "0.11.0" } # GLUON
gluon_codegen = { path = "codegen", version = "0.11.0" } # GLUON
gluon_completion = { path = "completion", version = "0.11.1" } # GLUON
gluon_codegen = { path = "codegen", version = "0.11.1" } # GLUON

[features]
default = ["regex", "random"]
Expand Down Expand Up @@ -175,9 +175,3 @@ path = "examples/lisp/main.rs"

[package.metadata.docs.rs]
features = ["docs_rs"]

[profile.bench]
debug = true

[profile.release]
debug = true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Gluon requires a recent Rust compiler to build (1.9.0 or later) and is available

```toml
[dependencies]
gluon = "0.11.0"
gluon = "0.11.1"
```

### Other languages
Expand Down
2 changes: 1 addition & 1 deletion base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_base"
version = "0.11.0" # GLUON
version = "0.11.1" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion base/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/gluon_base/0.11.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_base/0.11.1")] // # GLUON
#![allow(unknown_lints)]
//! The base crate contains pervasive types used in the compiler such as type representations, the
//! AST and some basic containers.
Expand Down
4 changes: 2 additions & 2 deletions c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_c-api"
version = "0.11.0" # GLUON
version = "0.11.1" # GLUON
authors = ["Markus Westerlind <[email protected]>"]
edition = "2018"

Expand All @@ -15,7 +15,7 @@ documentation = "https://docs.rs/gluon"
crate-type = ["cdylib"]

[dependencies]
gluon = { version = "0.11.0", path = ".." } # GLUON
gluon = { version = "0.11.1", path = ".." } # GLUON

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
libc = "0.2.14"
Expand Down
2 changes: 1 addition & 1 deletion c-api/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! A (WIP) C API allowing use of gluon in other langauges than Rust.
#![doc(html_root_url = "https://docs.rs/gluon_c-api/0.11.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_c-api/0.11.1")] // # GLUON

extern crate gluon;
#[cfg(not(target_arch = "wasm32"))]
Expand Down
8 changes: 4 additions & 4 deletions check/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_check"
version = "0.11.0" # GLUON
version = "0.11.1" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"

Expand All @@ -27,13 +27,13 @@ codespan-reporting = "0.2"

strsim = "0.8.0"

gluon_base = { path = "../base", version = "0.11.0" } # GLUON
gluon_codegen = { path = "../codegen", version = "0.11.0" } # GLUON
gluon_base = { path = "../base", version = "0.11.1" } # GLUON
gluon_codegen = { path = "../codegen", version = "0.11.1" } # GLUON

[dev-dependencies]
env_logger = "0.6"

gluon_parser = { path = "../parser", version = "0.11.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.11.1" } # GLUON
gluon_format = { path = "../format", version = ">=0.9" }

collect-mac = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion check/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! If an AST passes the checks in `Typecheck::typecheck_expr` (which runs all of theses checks
//! the expression is expected to compile succesfully (if it does not it should be considered an
//! internal compiler error.
#![doc(html_root_url = "https://docs.rs/gluon_check/0.11.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_check/0.11.1")] // # GLUON

extern crate codespan;
extern crate codespan_reporting;
Expand Down
Loading