Skip to content

Commit

Permalink
Version 0.11.1
Browse files Browse the repository at this point in the history
<a name="v0.11.1"></a>
### v0.11.1 (2019-02-13)

#### Bug Fixes

*   Don't build release artifacts with full debug info ([fe93583](fe93583))
* **check:**  Subsume implicit functions with forall correctly ([6de5c25](6de5c25))
  • Loading branch information
Marwes committed Feb 13, 2019
1 parent e28bb49 commit 375a6ac
Show file tree
Hide file tree
Showing 22 changed files with 104 additions and 93 deletions.
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.

20 changes: 10 additions & 10 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
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
2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_codegen"
version = "0.11.0" # GLUON
version = "0.11.1" # GLUON
authors = ["Markus <[email protected]>"]

license = "MIT"
Expand Down
8 changes: 4 additions & 4 deletions completion/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluon_completion"
version = "0.11.0" # GLUON
version = "0.11.1" # GLUON
authors = ["Markus <[email protected]>"]
edition = "2018"

Expand All @@ -17,11 +17,11 @@ itertools = "0.8"
walkdir = "2"
codespan = "0.2"

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

[dev-dependencies]
collect-mac = "0.1.0"
env_logger = "0.6"

gluon_check = { path = "../check", version = "0.11.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.11.0" } # GLUON
gluon_check = { path = "../check", version = "0.11.1" } # GLUON
gluon_parser = { path = "../parser", version = "0.11.1" } # GLUON
2 changes: 1 addition & 1 deletion completion/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Primitive auto completion and type quering on ASTs
#![doc(html_root_url = "https://docs.rs/gluon_completion/0.11.0")] // # GLUON
#![doc(html_root_url = "https://docs.rs/gluon_completion/0.11.1")] // # GLUON

extern crate codespan;
extern crate either;
Expand Down
Loading

0 comments on commit 375a6ac

Please sign in to comment.